:root {
  --ink: #0a1020;
  --ink-2: #263248;
  --muted: #748094;
  --line: #e7ebf2;
  --surface: #ffffff;
  --soft: #f5f7fa;
  --blue: #165dff;
  --blue-2: #0e42c7;
  --red: #ef163f;
  --red-2: #bd092c;
  --green: #09a66d;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 10px 30px rgba(13, 24, 45, .055);
  --shadow-md: 0 24px 64px rgba(13, 24, 45, .12);
  --container: 1380px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.65, 0, .35, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-nav-open,
body.is-search-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: -.035em;
}

.site-container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.icon-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border-radius: 50%;
  place-items: center;
  transition: color .25s, background .25s, transform .25s var(--ease-out);
}

.icon-button:hover {
  color: var(--blue);
  background: var(--soft);
  transform: translateY(-1px);
}

.icon-button--light {
  width: 34px;
  height: 34px;
  color: #fff;
}

.icon-button--light:hover {
  color: #fff;
  background: rgba(255, 255, 255, .14);
}

.breaking-bar {
  position: relative;
  z-index: 60;
  overflow: hidden;
  height: 38px;
  color: #fff;
  background: linear-gradient(100deg, #f0143e 0%, #9b001f 38%, #43000e 100%);
}

.breaking-bar::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-100%);
  animation: breaking-glint 7s linear infinite;
}

@keyframes breaking-glint {
  0%, 65% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.breaking-bar__inner {
  display: grid;
  height: 100%;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.breaking-bar__label {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: stretch;
  padding: 0 27px 0 0;
  font-size: 12px;
  letter-spacing: .035em;
  place-items: center;
}

.breaking-bar__label::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.26);
  content: "";
  transform: skewX(-15deg);
}

.breaking-bar__viewport {
  min-width: 0;
  overflow: hidden;
}

.breaking-bar__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 42px;
  animation: ticker-slide 42s linear infinite;
}

.breaking-bar.is-paused .breaking-bar__track {
  animation-play-state: paused;
}

.breaking-bar__track a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  white-space: nowrap;
}

.breaking-bar__track a::after {
  width: 3px;
  height: 3px;
  margin-left: 18px;
  background: rgba(255,255,255,.66);
  border-radius: 50%;
  content: "";
}

.breaking-bar__track time {
  color: rgba(255,255,255,.72);
  font-variant-numeric: tabular-nums;
}

@keyframes ticker-slide {
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 76px;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.5) blur(18px);
  transition: height .3s var(--ease-out), box-shadow .3s;
}

.site-header.is-compact {
  height: 64px;
  box-shadow: 0 10px 30px rgba(15, 24, 45, .08);
}

.site-header__row {
  display: flex;
  height: 100%;
  align-items: center;
}

.brand {
  display: inline-flex;
  min-width: 164px;
  margin-right: 16px;
  flex: 0 0 164px;
  align-items: baseline;
  color: var(--ink);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -.055em;
}

.brand__mark {
  position: relative;
  margin-left: 3px;
  color: var(--blue);
}

.brand__mark::after {
  position: absolute;
  right: -9px;
  bottom: 2px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.main-nav {
  display: flex;
  height: 100%;
  min-width: 0;
  align-items: center;
  gap: clamp(18px, 1.7vw, 30px);
}

.main-nav a {
  position: relative;
  display: grid;
  height: 100%;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 3px;
  background: var(--blue);
  border-radius: 10px 10px 0 0;
  content: "";
  transition: right .28s var(--ease-out), left .28s var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  right: 0;
  left: 0;
}

.main-nav a.is-active {
  color: var(--blue);
}

.header-actions {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 8px;
}


.live-pill {
  display: inline-flex;
  height: 34px;
  padding: 0 12px;
  align-items: center;
  gap: 7px;
  color: var(--red);
  background: #fff3f5;
  border: 1px solid #ffd7df;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.live-pill span,
.live-dot::before {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(239, 22, 63, .09);
  animation: live-pulse 1.8s ease-out infinite;
}

@keyframes live-pulse {
  50% { box-shadow: 0 0 0 1px rgba(239, 22, 63, .06); }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 10px;
  background: var(--soft);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
  border-radius: 4px;
  transition: transform .25s, opacity .25s;
}

.search-panel {
  position: fixed;
  z-index: 90;
  top: 38px;
  right: 0;
  left: 0;
  padding: 22px 0;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .28s, transform .35s var(--ease-out);
}

.search-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-panel__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-panel form {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 12px;
}

.search-panel form > svg {
  color: var(--muted);
}

.search-panel input {
  flex: 1;
  height: 54px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 20px;
  font-weight: 600;
}

.topics-strip {
  border-bottom: 1px solid var(--line);
}

.topics-strip__row {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 24px;
}

.topics-strip__row > strong {
  flex: 0 0 auto;
  font-size: 18px;
}

.topics-strip__scroller {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.topics-strip__scroller a {
  display: inline-flex;
  height: 42px;
  flex: 0 0 auto;
  padding: 4px 14px 4px 5px;
  align-items: center;
  gap: 9px;
  background: var(--soft);
  border: 1px solid #eef1f5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: color .25s, background .25s, border-color .25s, transform .25s var(--ease-out);
}

.topics-strip__scroller a:hover {
  color: var(--blue);
  background: #fff;
  border-color: #cfdbf7;
  transform: translateY(-2px);
}

.topic-thumb {
  width: 32px;
  height: 32px;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}

.topic-thumb--karabakh { background: linear-gradient(145deg, #28452d, #af8258); }
.topic-thumb--cop { background: linear-gradient(145deg, #082f4b, #16a0ab); }
.topic-thumb--energy { background: linear-gradient(145deg, #d98c24, #424033); }
.topic-thumb--region { background: linear-gradient(145deg, #061b4d, #2d70c8); }
.topic-thumb--transport { background: linear-gradient(145deg, #6c7f98, #182d43); }

.topics-strip__next {
  flex: 0 0 auto;
  background: var(--soft);
}

.button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 19px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  transition: color .25s, background .25s, box-shadow .25s, transform .25s var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(22, 93, 255, .23);
}

.button--primary:hover {
  background: var(--blue-2);
  box-shadow: 0 14px 30px rgba(22, 93, 255, .3);
}

.button--dark {
  color: #fff;
  background: var(--ink);
}

.button--large {
  min-height: 52px;
  padding-inline: 26px;
}

.button svg,
.text-link svg,
.soft-button svg {
  width: 15px;
  height: 15px;
  transition: transform .25s var(--ease-out);
}

.button:hover svg,
.text-link:hover svg,
.soft-button:hover svg {
  transform: translateX(3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.text-link--block {
  display: flex;
  width: 100%;
  height: 40px;
  justify-content: center;
  background: var(--soft);
  border-radius: 8px;
}

.soft-button {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue);
  background: var(--soft);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  transition: background .25s, transform .25s var(--ease-out);
}

.soft-button:hover {
  background: #ebf0fb;
  transform: translateY(-1px);
}

.home-page {
  padding: 24px 0 56px;
}

.hero-composition {
  display: grid;
  grid-template-columns: minmax(0, 2.08fr) minmax(220px, .78fr) minmax(280px, .92fr);
  gap: 18px;
}

.hero-stage {
  position: relative;
  min-height: 552px;
  overflow: hidden;
  background: #07101d;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero-stage__slides,
.hero-slide,
.hero-slide__media,
.hero-slide__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(.98);
  transition: opacity .7s var(--ease-smooth), transform 1.2s var(--ease-out);
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide__media img {
  object-fit: cover;
  transition: transform 8s linear;
}

.hero-slide.is-active .hero-slide__media img {
  transform: scale(1.055);
}

.hero-slide__shade,
.overlay-card__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 17, .04) 20%, rgba(4, 9, 17, .88) 100%);
  pointer-events: none;
}

.hero-slide__content {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 36px;
  left: 34px;
  max-width: 670px;
  color: #fff;
}

.hero-slide__content h1 {
  max-width: 640px;
  margin: 14px 0 18px;
  font-size: clamp(28px, 3vw, 44px);
}

.hero-slide__content h1 a {
  transition: opacity .2s;
}

.hero-slide__content h1 a:hover {
  opacity: .82;
}

.category-chip,
.status-chip {
  display: inline-flex;
  width: max-content;
  min-height: 22px;
  padding: 0 8px;
  align-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 5px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.status-chip--red {
  background: var(--red);
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.story-meta > span {
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
  opacity: .55;
}

.story-meta b {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.story-meta svg {
  width: 14px;
  height: 14px;
}

.story-meta--light {
  color: rgba(255,255,255,.78);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(4, 9, 17, .62);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  place-items: center;
  transform: translateY(-50%);
  transition: background .25s, transform .25s var(--ease-out);
}

.hero-arrow:hover {
  background: var(--blue);
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow--prev { left: 18px; }
.hero-arrow--next { right: 18px; }

.hero-progress {
  position: absolute;
  z-index: 5;
  bottom: 15px;
  left: 50%;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.hero-progress button {
  position: relative;
  width: 8px;
  height: 8px;
  padding: 0;
  overflow: hidden;
  background: rgba(255,255,255,.6);
  border-radius: 50%;
  transition: width .3s var(--ease-out), background .3s;
}

.hero-progress button.is-active {
  width: 30px;
  background: rgba(255,255,255,.28);
  border-radius: 10px;
}

.hero-progress button.is-active::after {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  content: "";
  transform-origin: left;
  animation: hero-timer 6s linear;
}

@keyframes hero-timer {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-ads {
  display: grid;
  gap: 18px;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.ad-slot {
  position: relative;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ad-slot > span {
  position: absolute;
  z-index: 3;
  top: 7px;
  right: 9px;
  color: rgba(255,255,255,.7);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
}

.ad-slot img,
.ad-slot > a {
  width: 100%;
  height: 100%;
}

.ad-slot img {
  object-fit: cover;
}

.ad-slot:has(> a) .ad-fallback,
.ad-slot:has(> img) .ad-fallback {
  display: none;
}

.ad-fallback {
  display: flex;
  height: 100%;
  min-height: 220px;
  padding: 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 75% 20%, rgba(255,255,255,.22), transparent 22%),
    linear-gradient(145deg, #ff274e, #ca002b 60%, #8f001f);
  text-align: center;
}

.ad-fallback::before {
  width: 38px;
  height: 3px;
  margin-bottom: 15px;
  background: #fff;
  border-radius: 9px;
  content: "";
  transform: rotate(-18deg);
}

.ad-fallback b {
  font-size: 26px;
  line-height: .95;
  letter-spacing: -.05em;
}

.ad-fallback small {
  margin-top: 14px;
  color: rgba(255,255,255,.7);
  font-size: 10px;
  letter-spacing: .12em;
}

.ad-fallback--dark {
  background:
    radial-gradient(circle at 20% 18%, rgba(65, 112, 255, .5), transparent 30%),
    linear-gradient(145deg, #111c3a, #070b15 75%);
}

.ad-fallback--blue {
  min-height: 600px;
  background:
    radial-gradient(circle at 75% 20%, rgba(80, 202, 255, .42), transparent 25%),
    linear-gradient(160deg, #174ca4, #071d47 60%, #06122b);
}

.chronicle-panel,
.surface-panel,
.sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.chronicle-panel {
  display: flex;
  min-width: 0;
  padding: 22px 20px 17px;
  flex-direction: column;
}

.panel-heading,
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-heading h2,
.section-heading h2 {
  margin: 0;
  font-size: 19px;
}

.panel-heading--line {
  min-height: 48px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.live-dot {
  display: inline-flex;
  padding: 6px 8px;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  background: #edf3ff;
  border-radius: 5px;
  font-size: 8px;
  font-weight: 900;
}

.live-dot::before {
  display: block;
  width: 5px;
  height: 5px;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(22,93,255,.09);
  content: "";
}

.chronicle-list {
  position: relative;
  flex: 1;
  padding: 13px 0 8px 17px;
}

.chronicle-list::before {
  position: absolute;
  top: 19px;
  bottom: 18px;
  left: 3px;
  width: 1px;
  background: #c9d9ff;
  content: "";
}

.chronicle-item {
  position: relative;
  display: block;
  padding: 8px 0 8px 8px;
  transition: color .2s, transform .25s var(--ease-out);
}

.chronicle-item:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.chronicle-item__dot {
  position: absolute;
  top: 14px;
  left: -18px;
  width: 7px;
  height: 7px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.chronicle-item time {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.chronicle-item b {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.35;
}

.triad-grid {
  display: grid;
  margin-top: 18px;
  grid-template-columns: .9fr 1.72fr .92fr;
  gap: 18px;
}

.surface-panel {
  min-width: 0;
  padding: 16px;
}

.latest-list,
.headline-stack {
  display: flex;
  flex-direction: column;
}

.latest-item {
  display: grid;
  min-height: 54px;
  padding: 8px 0;
  align-items: start;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  transition: color .2s, transform .25s var(--ease-out);
}

.latest-item:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.latest-item time {
  padding-top: 13px;
  color: var(--muted);
  font-size: 9px;
}

.latest-item div {
  min-width: 0;
}

.latest-item div span {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.latest-item div b {
  display: -webkit-box;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.33;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.latest-item small {
  display: inline-flex;
  padding-top: 13px;
  align-items: center;
  gap: 3px;
  color: var(--muted);
  font-size: 8px;
}

.latest-item small svg {
  width: 12px;
  height: 12px;
}

.latest-panel .soft-button,
.rank-panel .soft-button {
  margin-top: 12px;
}

.trend-grid {
  display: grid;
  padding-top: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.overlay-card {
  position: relative;
  min-height: 146px;
  overflow: hidden;
  background: #0a1020;
  border-radius: 10px;
}

.overlay-card__media,
.overlay-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.overlay-card__media img {
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.overlay-card:hover img {
  transform: scale(1.06);
}

.overlay-card__content {
  position: absolute;
  z-index: 2;
  right: 13px;
  bottom: 12px;
  left: 13px;
  color: #fff;
}

.overlay-card__content h3 {
  margin: 8px 0 8px;
  font-size: 14px;
}

.rank-list {
  margin: 0;
  padding: 6px 0 0;
  list-style: none;
}

.rank-list li {
  border-bottom: 1px solid var(--line);
}

.rank-list li:last-child {
  border-bottom: 0;
}

.rank-list li a {
  display: flex;
  min-height: 58px;
  padding: 9px 0;
  align-items: flex-start;
  gap: 12px;
}


.rank-list li div {
  min-width: 0;
}

.rank-list b {
  display: -webkit-box;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.35;
  transition: color .2s;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rank-list a:hover b {
  color: var(--blue);
}

.rank-list small {
  display: flex;
  margin-top: 4px;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 8px;
}

.rank-list small svg {
  width: 12px;
  height: 12px;
}

.editorial-section,
.category-section,
.economy-section,
.dual-category,
.split-category {
  margin-top: 30px;
}

.section-heading {
  min-height: 44px;
  margin-bottom: 11px;
}

.section-heading__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-heading h2 {
  font-size: 22px;
}

.section-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  place-items: center;
}

.section-icon--red { background: var(--red); }
.section-icon--blue { background: var(--blue); }

.editorial-grid {
  display: grid;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 1.5fr .98fr 1.05fr;
  gap: 18px;
}

.editorial-lead-card,
.section-feature,
.mini-feature {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #0a1020;
  border-radius: 12px;
}

.editorial-lead-card__media,
.editorial-lead-card__media img,
.section-feature__media,
.section-feature__media img,
.mini-feature__media,
.mini-feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.editorial-lead-card__media img,
.section-feature__media img,
.mini-feature__media img {
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}

.editorial-lead-card:hover img,
.section-feature:hover img,
.mini-feature:hover img {
  transform: scale(1.055);
}

.editorial-lead-card__content,
.section-feature__content,
.mini-feature__content {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: #fff;
}

.editorial-lead-card__content h3,
.section-feature__content h3 {
  max-width: 580px;
  margin: 11px 0 10px;
  font-size: 23px;
}

.editorial-media-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.media-line-card {
  display: grid;
  min-height: 83px;
  padding: 7px 0;
  align-items: center;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.media-line-card:last-child {
  border-bottom: 0;
}

.media-line-card__media {
  overflow: hidden;
  aspect-ratio: 1.55;
  border-radius: 8px;
}

.media-line-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}

.media-line-card:hover img {
  transform: scale(1.07);
}

.media-line-card h3 {
  margin: 0 0 9px;
  font-size: 12px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.story-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .25s, box-shadow .35s, transform .35s var(--ease-out);
}

.story-card:hover {
  border-color: #d4ddec;
  box-shadow: 0 18px 42px rgba(15, 24, 45, .1);
  transform: translateY(-5px);
}

.story-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.66;
  background: var(--soft);
}

.story-card__media::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(4,9,17,.36));
  content: "";
  opacity: .75;
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease-out);
}

.story-card:hover .story-card__media img {
  transform: scale(1.06);
}

.story-card__media .category-chip {
  position: absolute;
  z-index: 2;
  top: 11px;
  left: 11px;
}

.story-card__body {
  padding: 14px 14px 13px;
}

.story-card__body h2,
.story-card__body h3 {
  display: -webkit-box;
  min-height: 38px;
  margin: 0 0 12px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feature-list-layout,
.economy-grid {
  display: grid;
  min-height: 320px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 1.12fr .92fr;
  gap: 18px;
}

.split-category {
  display: grid;
  grid-template-columns: minmax(0, 2.45fr) minmax(260px, .78fr);
  gap: 18px;
}

.split-category__side {
  padding-top: 55px;
}

.side-feature {
  overflow: hidden;
  height: calc(100% - 0px);
  min-height: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.side-feature__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.6;
}

.side-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.side-feature:hover img {
  transform: scale(1.06);
}

.side-feature__content {
  padding: 17px;
}

.side-feature__content h3 {
  margin: 10px 0 12px;
  font-size: 18px;
}

.market-and-news {
  min-width: 0;
}

.market-strip {
  display: grid;
  margin-bottom: 8px;
  padding: 8px 0 12px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.market-strip div {
  display: grid;
  gap: 2px;
}

.market-strip span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
}

.market-strip b {
  font-size: 11px;
}

.market-strip em {
  color: var(--green);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.market-strip em.is-down {
  color: var(--red);
}

.dual-category {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mini-feature-layout {
  display: grid;
  min-height: 258px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: 1.15fr .95fr;
  gap: 16px;
}

.mini-feature {
  min-height: 238px;
}

.mini-feature__content {
  right: 17px;
  bottom: 17px;
  left: 17px;
}

.mini-feature__content h3 {
  margin: 8px 0 9px;
  font-size: 18px;
}

.selected-banner {
  position: relative;
  display: grid;
  min-height: 112px;
  margin-top: 32px;
  padding: 20px 24px;
  overflow: hidden;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.9) 56%, rgba(255,255,255,.2)),
    linear-gradient(145deg, #ca9a5b, #5b2f1d);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 260px minmax(0, 1fr) auto;
  gap: 28px;
}

.selected-banner::after {
  position: absolute;
  z-index: 0;
  top: -70px;
  right: 120px;
  width: 320px;
  height: 250px;
  background: repeating-linear-gradient(135deg, rgba(22,93,255,.12) 0 8px, transparent 8px 18px);
  content: "";
  transform: rotate(-9deg);
}

.selected-banner > * {
  position: relative;
  z-index: 1;
}

.selected-banner__label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.selected-banner__label small,
.selected-banner__label b {
  display: block;
}

.selected-banner__label small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.selected-banner__label b {
  margin-top: 2px;
  font-size: 15px;
}

.selected-banner__content h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.selected-banner__content p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-2);
  font-size: 11px;
}

.page-shell {
  display: grid;
  padding: 34px 0 64px;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
}

.page-main {
  min-width: 0;
}

.page-heading {
  display: flex;
  min-height: 92px;
  margin-bottom: 20px;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.page-heading h1 {
  margin: 0 0 18px;
  font-size: 36px;
}

.page-heading__meta {
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 10px;
}

.story-grid--listing {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card--listing .story-card__body h2 {
  min-height: 42px;
  font-size: 17px;
}

.story-card__summary {
  display: -webkit-box;
  min-height: 58px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.story-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.story-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 9px;
}

.story-actions span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.story-actions svg {
  width: 14px;
  height: 14px;
}

.page-sidebar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
}

.sidebar-card {
  padding: 17px;
}

.sidebar-card--newsletter {
  overflow: hidden;
  padding: 23px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(76,184,255,.45), transparent 25%),
    linear-gradient(150deg, #164cba, #071a46);
  border: 0;
}

.sidebar-card--newsletter .eyebrow {
  color: #82b1ff;
}

.sidebar-card--newsletter h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.sidebar-card--newsletter p {
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

.sidebar-card--newsletter form {
  display: grid;
  gap: 8px;
}

.sidebar-card--newsletter input {
  height: 46px;
  padding: 0 13px;
  color: #fff;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  outline: none;
}

.sidebar-card--newsletter input::placeholder {
  color: rgba(255,255,255,.55);
}

.ad-slot--sidebar {
  min-height: 600px;
}

.article-breadcrumb {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
}

.article-breadcrumb a {
  transition: color .2s;
}

.article-breadcrumb a:hover {
  color: var(--blue);
}

.article-header {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  max-width: 930px;
  margin: 16px 0 13px;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.06;
}

.article-deck {
  max-width: 800px;
  margin-bottom: 24px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
}

.article-header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-author__avatar {
  display: grid;
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #4a87ff);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  place-items: center;
}

.article-author small,
.article-author b {
  display: block;
}

.article-author small {
  color: var(--muted);
  font-size: 9px;
}

.article-author b {
  font-size: 11px;
}

.article-hero {
  margin: 26px 0 18px;
  overflow: hidden;
  aspect-ratio: 1.75;
  background: var(--soft);
  border-radius: var(--radius);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-toolbar {
  display: flex;
  min-height: 60px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--soft);
  border-radius: 10px;
}

.article-toolbar__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
}

.article-toolbar__font {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-toolbar__font button {
  width: 38px;
  height: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 800;
}

.article-layout {
  display: grid;
  margin-top: 26px;
  grid-template-columns: 48px minmax(0, 760px);
  gap: 24px;
}

.article-share {
  position: sticky;
  top: 100px;
  display: flex;
  height: max-content;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.article-share > span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .12em;
}

.article-share a,
.article-share button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  place-items: center;
  transition: color .2s, border-color .2s, transform .25s var(--ease-out);
}

.article-share a:hover,
.article-share button:hover {
  color: var(--blue);
  border-color: #bfd0f6;
  transform: translateY(-2px);
}

.article-share svg {
  width: 16px;
  height: 16px;
}

.article-body {
  color: #1b2435;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.82;
}

.article-body > p:first-of-type::first-letter {
  float: left;
  margin: 8px 10px 0 0;
  color: var(--blue);
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: .72;
}

.article-body h2,
.article-body h3 {
  margin: 34px 0 14px;
  color: var(--ink);
  font-family: Inter, "Segoe UI", sans-serif;
}

.article-body h2 {
  font-size: 28px;
}

.article-body h3 {
  font-size: 22px;
}

.article-body img,
.article-body iframe,
.article-body video {
  max-width: 100%;
  border-radius: 12px;
}

.article-body blockquote {
  position: relative;
  margin: 30px 0;
  padding: 24px 28px 24px 32px;
  color: var(--ink);
  background: #f1f5ff;
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  font-size: 21px;
  font-style: italic;
}

.article-tags {
  display: flex;
  margin-top: 30px;
  padding-top: 20px;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 11px;
}

.article-tags > span {
  color: var(--muted);
}

.article-tags a {
  padding: 6px 10px;
  background: var(--soft);
  border-radius: 999px;
  font-weight: 700;
}

.article-source {
  display: flex;
  margin: 34px 0;
  padding: 18px;
  align-items: center;
  justify-content: space-between;
  background: var(--soft);
  border-radius: 12px;
}

.article-source > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-source small,
.article-source b {
  display: block;
}

.article-source small {
  color: var(--muted);
  font-size: 9px;
}

.article-source b {
  font-size: 12px;
}

.article-source p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.related-section,
.comments-section {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.static-page,
.contact-page {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.static-page__header {
  padding: 46px clamp(24px, 5vw, 70px) 34px;
  background:
    radial-gradient(circle at 85% 0, rgba(22,93,255,.1), transparent 28%),
    linear-gradient(180deg, #fff, #f8faff);
  border-bottom: 1px solid var(--line);
}

.static-page__header h1 {
  max-width: 800px;
  margin: 8px 0 16px;
  font-size: clamp(34px, 4vw, 52px);
}

.static-page__header > p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
}

.static-page__content {
  max-width: 820px;
  padding: 44px clamp(24px, 5vw, 70px) 60px;
}

.contact-layout {
  display: grid;
  padding: 38px clamp(22px, 4vw, 54px) 54px;
  grid-template-columns: minmax(0, 1.6fr) minmax(250px, .7fr);
  gap: 48px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid label {
  display: grid;
  gap: 7px;
}

.form-grid label > span {
  font-size: 11px;
  font-weight: 800;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.contact-form select {
  width: 100%;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #dbe1eb;
  border-radius: 9px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-grid input,
.form-grid select {
  height: 48px;
}

.form-grid textarea {
  min-height: 170px;
  padding-top: 13px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22,93,255,.09);
}

.contact-form .button {
  margin-top: 18px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details > div {
  position: relative;
  display: grid;
  min-height: 96px;
  padding: 18px 18px 18px 72px;
  align-content: center;
  background: var(--soft);
  border-radius: 12px;
}

.contact-details__icon {
  position: absolute;
  top: 50%;
  left: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--blue);
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  place-items: center;
  transform: translateY(-50%);
}

.contact-details small {
  color: var(--muted);
  font-size: 9px;
}

.contact-details a,
.contact-details b {
  margin-top: 3px;
  font-size: 12px;
}

.contact-details > p {
  padding: 17px;
  color: var(--ink-2);
  background: #fff6f7;
  border: 1px solid #ffe1e6;
  border-radius: 10px;
  font-size: 11px;
}

.contact-details > p a {
  color: var(--red);
  font-weight: 800;
}

.about-page__content,
.advertising-page__content {
  padding: 38px clamp(22px, 4vw, 54px) 56px;
}

.about-intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-intro > div,
.ad-products > article {
  padding: 23px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.about-intro span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}

.about-intro h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.about-intro p,
.ad-products p {
  margin: 0;
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  margin: 28px 0;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(64,166,255,.35), transparent 24%),
    linear-gradient(145deg, #154da9, #08162f);
  border-radius: 15px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-stats > div {
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.about-stats > div:last-child {
  border-right: 0;
}

.about-stats b,
.about-stats span {
  display: block;
}

.about-stats b {
  font-size: 28px;
  letter-spacing: -.05em;
}

.about-stats span {
  margin-top: 0;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.4;
}

.about-copy,
.advertising-copy {
  max-width: 820px;
}

.advertising-page__hero .button {
  margin-top: 24px;
}

.ad-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ad-products > article {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.ad-products__visual {
  position: relative;
  display: block;
  height: 150px;
  margin: -10px -10px 20px;
  overflow: hidden;
  background: #edf2fa;
  border-radius: 9px;
}

.ad-products__visual::before,
.ad-products__visual::after {
  position: absolute;
  content: "";
}

.ad-products__visual--display::before {
  inset: 18px 44px;
  background: linear-gradient(145deg, var(--red), #7f001b);
  border-radius: 7px;
  box-shadow: -32px 12px 0 -12px #fff, 32px -9px 0 -14px #fff;
}

.ad-products__visual--display::after {
  right: 22px;
  bottom: 18px;
  left: 22px;
  height: 5px;
  background: #ccd6e8;
  border-radius: 5px;
}

.ad-products__visual--native::before {
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  background:
    linear-gradient(transparent 56%, rgba(4,9,17,.75)),
    linear-gradient(145deg, #1c5ecf, #071a40);
  border-radius: 8px;
}

.ad-products__visual--native::after {
  right: 38px;
  bottom: 36px;
  left: 38px;
  height: 6px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 11px 0 -1px rgba(255,255,255,.5);
}

.ad-products__visual--project::before {
  top: -40px;
  right: -10px;
  width: 190px;
  height: 190px;
  background: repeating-linear-gradient(135deg, var(--blue) 0 7px, #77b1ff 7px 14px);
  border-radius: 50%;
  opacity: .75;
}

.ad-products__visual--project::after {
  bottom: 18px;
  left: 24px;
  width: 90px;
  height: 68px;
  background: #fff;
  border-radius: 7px;
  box-shadow: var(--shadow-sm);
}

.ad-products small {
  color: var(--blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.ad-products h3 {
  margin: 8px 0;
  font-size: 19px;
}

.audience-panel {
  display: grid;
  margin: 34px 0;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(73,172,255,.36), transparent 24%),
    linear-gradient(145deg, #123f93, #07152e);
  border-radius: 15px;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
}

.audience-panel .eyebrow {
  color: #85b5ff;
}

.audience-panel h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.audience-panel p {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: 12px;
  line-height: 1.7;
}

.audience-panel__metrics {
  display: grid;
  gap: 8px;
}

.audience-panel__metrics > div {
  padding: 12px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
}

.audience-panel__metrics b,
.audience-panel__metrics span {
  display: block;
}

.audience-panel__metrics b {
  font-size: 14px;
}

.audience-panel__metrics span {
  margin-top: 2px;
  color: rgba(255,255,255,.54);
  font-size: 9px;
}

.system-message {
  display: flex;
  margin-bottom: 20px;
  padding: 14px 16px;
  align-items: center;
  gap: 10px;
  color: #143069;
  background: #edf3ff;
  border: 1px solid #d6e2ff;
  border-radius: 10px;
}

.system-message__icon {
  display: grid;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 800;
  place-items: center;
}

.pagination-wrap {
  margin-top: 28px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pagination a,
.pagination span,
.pagination__arrow {
  display: grid;
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  place-items: center;
}

.pagination span:not(.pagination__arrow) {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.comment-item {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  border-bottom: 1px solid var(--line);
}

.comment-item__avatar img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.comment-item__body header,
.comment-item__body footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment-item__body header b,
.comment-item__body header time {
  display: block;
}

.comment-item__body header b {
  font-size: 12px;
}

.comment-item__body header time,
.comment-item__body header > span {
  color: var(--muted);
  font-size: 9px;
}

.comment-item__text {
  padding: 11px 0;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.65;
}

.comment-item__body footer button {
  padding: 0;
  color: var(--blue);
  background: transparent;
  font-size: 10px;
  font-weight: 800;
}

.add-comment {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--soft);
  border-radius: 12px;
}

.add-comment h3 {
  margin-bottom: 16px;
}

.comment-editor {
  min-height: 180px;
}

.newsletter-band {
  padding: 34px 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.newsletter-band__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1.15fr 1fr auto;
  gap: 36px;
}

.newsletter-band h2 {
  margin: 0;
  font-size: 23px;
}

.newsletter-band form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.newsletter-band input {
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px 0 0 8px;
  outline: 0;
}

.newsletter-band form .button {
  border-radius: 0 8px 8px 0;
}

.app-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-links a {
  display: grid;
  min-width: 118px;
  min-height: 42px;
  padding: 7px 12px;
  color: #fff;
  background: var(--ink);
  border-radius: 7px;
  line-height: 1;
}

.app-links small {
  font-size: 7px;
}

.app-links b {
  margin-top: 3px;
  font-size: 12px;
}

.site-footer {
  padding: 42px 0 20px;
  color: rgba(255,255,255,.76);
  background:
    radial-gradient(circle at 16% 0, rgba(22,93,255,.22), transparent 28%),
    #08101e;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  gap: 44px;
}

.brand--footer {
  color: #fff;
  margin-right: 0;
}

.footer-brand p {
  max-width: 330px;
  margin: 16px 0;
  color: rgba(255,255,255,.52);
  font-size: 11px;
  line-height: 1.65;
}

.site-footer h3 {
  margin: 7px 0 14px;
  color: #fff;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.site-footer__grid > div:not(.footer-brand) > a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 8px 0;
  color: rgba(255,255,255,.57);
  font-size: 10px;
  transition: color .2s, transform .25s var(--ease-out);
}

.site-footer__grid > div:not(.footer-brand) > a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact p {
  color: rgba(255,255,255,.42);
  font-size: 10px;
}

.social-row {
  display: flex;
  gap: 7px;
}

.social-row a {
  display: grid;
  width: 30px;
  height: 30px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  place-items: center;
  transition: background .2s, transform .25s var(--ease-out);
}

.social-row a:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.site-footer__bottom {
  display: flex;
  margin-top: 34px;
  padding-top: 18px;
  justify-content: space-between;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 9px;
}

.back-to-top {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transform: translateY(12px);
  transition: opacity .25s, transform .3s var(--ease-out), background .2s;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease-out), transform .8s var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

::selection {
  color: #fff;
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid rgba(22,93,255,.35);
  outline-offset: 3px;
}

/* SizinXeber v2 - premium news blue */
:root {
  --ink: #071e3d;
  --ink-2: #213653;
  --muted: #66758b;
  --line: #dfe7f1;
  --surface: #ffffff;
  --soft: #f3f7fc;
  --blue: #1268e8;
  --blue-2: #084db6;
  --nav-hover: #073f96;
  --cyan: #20b7d5;
  --red: #ee294d;
  --red-2: #c91639;
  --radius-xs: 5px;
  --radius-sm: 8px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 8px 28px rgba(7,30,61,.065);
  --shadow-md: 0 24px 72px rgba(7,30,61,.16);
  --container: 1280px;
}

body {
  color: var(--ink);
  background: #fff;
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
}

.breaking-bar {
  height: 32px;
  background: #071e3d;
}

.breaking-bar::after { display: none; }

.breaking-bar__label {
  gap: 8px;
  padding-right: 22px;
  font-size: 10px;
}

.breaking-bar__label i {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: live-pulse 1.8s ease-out infinite;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(238,41,77,.45); }
  50% { box-shadow: 0 0 0 5px rgba(238,41,77,0); }
}

.site-header {
  height: 72px;
  border-bottom-color: #e5ebf4;
  box-shadow: 0 1px 0 rgba(7,30,61,.02);
}

.site-header__row { height: 100%; gap: 28px; }

.brand--news {
  display: inline-flex;
  min-width: max-content;
  align-items: baseline;
  gap: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.055em;
  text-transform: lowercase;
}

.brand--news .brand__word,
.brand--news .brand__mark {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.brand--news .brand__mark { color: var(--blue); }
.brand--news .brand__mark::after { display: none; }

.main-nav {
  gap: 24px;
  margin-left: auto;
}

.main-nav > a,
.more-nav__toggle {
  position: relative;
  display: inline-flex;
  height: 72px;
  padding: 0;
  align-items: center;
  color: #162944;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.main-nav > a::after,
.more-nav__toggle::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s var(--ease-out);
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after,
.more-nav.is-open .more-nav__toggle::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav > a.is-active { color: var(--blue); }
.main-nav > a:hover,
.more-nav__toggle:hover,
.more-nav.is-open .more-nav__toggle { color: var(--nav-hover); }

.main-nav > a:hover::after,
.more-nav__toggle:hover::after,
.more-nav.is-open .more-nav__toggle::after { background: var(--nav-hover); }

.more-nav { position: relative; }

.more-nav__toggle { gap: 5px; cursor: pointer; }
.more-nav__toggle svg { width: 14px; height: 14px; transition: transform .24s; }
.more-nav.is-open .more-nav__toggle svg { transform: rotate(180deg); }

.more-nav__panel {
  position: absolute;
  z-index: 95;
  top: calc(100% + 8px);
  right: -10px;
  width: 260px;
  padding: 7px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-7px);
  transition: opacity .18s, transform .22s var(--ease-out);
}

.more-nav.is-open .more-nav__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .more-nav:hover .more-nav__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.more-nav__links {
  display: flex;
  padding: 0;
  flex-direction: column;
  gap: 1px;
}

.more-nav__links a {
  display: block;
  padding: 10px 12px;
  border-left: 2px solid transparent;
  border-radius: 4px;
  color: #162944;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
  transition: color .18s, background .18s, border-color .18s;
}

.more-nav__links a:hover,
.more-nav__links a:focus-visible {
  color: var(--nav-hover);
  background: #e9f0f8;
  border-left-color: var(--nav-hover);
  outline: none;
}

.header-actions { gap: 3px; }
.live-pill { height: 32px; padding-inline: 12px; font-size: 10px; border-radius: 5px; }

.scroll-sentinel {
  position: absolute;
  top: 680px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.page-ad-rail {
  position: fixed;
  z-index: 15;
  top: 124px;
  display: none;
  width: 160px;
  height: 600px;
  overflow: hidden;
  color: #fff;
  background: #061d3b;
  border: 1px solid rgba(18,104,232,.28);
}

.page-ad-rail--left { left: max(12px, calc(50vw - 820px)); }
.page-ad-rail--right { right: max(12px, calc(50vw - 820px)); }
.page-ad-rail > span { position: absolute; top: 10px; left: 12px; z-index: 2; color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .14em; }

.page-ad-rail__fallback {
  display: flex;
  height: 100%;
  padding: 30px 18px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.page-ad-rail__fallback b { font-size: 18px; line-height: 1.4; letter-spacing: .03em; }
.page-ad-rail__fallback i { width: 38px; height: 3px; margin: 24px 0; background: var(--cyan); }
.page-ad-rail__fallback em { color: var(--cyan); font-size: 10px; font-style: normal; font-weight: 800; }

.home-page--v2 { padding-top: 22px; }

.home-lead-grid {
  display: grid;
  align-items: stretch;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 342px;
}

.hero-stage--wide {
  height: 620px;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid #d9e2ed;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero-stage--wide .hero-slide__content {
  right: 48px;
  bottom: 42px;
  left: 48px;
  max-width: 670px;
}

.hero-stage--wide .hero-slide__content h1 { max-width: 650px; font-size: clamp(38px, 3.1vw, 54px); }
.hero-stage--wide .hero-slide__shade { background: linear-gradient(180deg, rgba(4,18,39,.04) 20%, rgba(4,18,39,.9) 100%); }


.hero-stage--wide .hero-arrow {
  top: auto;
  right: 22px;
  bottom: 24px;
  left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 4px;
  transform: none;
}

.hero-stage--wide .hero-arrow--prev { right: 70px; }
.hero-stage--wide .hero-progress { right: 152px; bottom: 39px; left: auto; width: 210px; }
.hero-stage--wide .hero-progress button { width: 42px; height: 3px; border-radius: 0; }

.home-sidebar {
  display: grid;
  height: 620px;
  min-height: 0;
  gap: 10px;
  grid-template-rows: 2fr 1.45fr 1.45fr;
}

.home-sidebar .sidebar-card {
  min-height: 0;
  padding: 15px 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  box-shadow: none;
}

.home-sidebar .panel-heading { margin-bottom: 9px; padding-bottom: 9px; }
.home-sidebar .panel-heading h2 { font-size: 16px; }
.home-sidebar .eyebrow { margin-bottom: 2px; font-size: 8px; }
.home-sidebar .latest-list { gap: 0; overflow: hidden; }
.home-sidebar .latest-item { min-height: 37px; padding: 6px 0; grid-template-columns: 38px 1fr; }
.home-sidebar .latest-item div span { display: none; }
.home-sidebar .latest-item div b { overflow: hidden; font-size: 10.5px; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.home-sidebar .latest-item small { display: none; }
.home-sidebar .soft-button { min-height: 30px; margin-top: 6px; font-size: 9px; }
.home-sidebar .rank-list li a { min-height: 32px; padding: 4px 0; gap: 8px; }
.home-sidebar .rank-list b { display: -webkit-box; overflow: hidden; font-size: 9.5px; line-height: 1.2; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.home-sidebar .rank-list small { display: none; }

.story-rail--full { margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--line); }

.story-rail__top {
  display: flex;
  margin-bottom: 12px;
  align-items: flex-end;
  justify-content: space-between;
}

.story-rail__top h2 { margin: 0; font-size: 22px; }
.story-rail__top .eyebrow { margin-bottom: 2px; }

.story-rail__controls { display: flex; gap: 6px; }
.story-rail__controls button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  place-items: center;
  transition: color .2s, background .2s, border-color .2s;
}
.story-rail__controls button:hover { color: #fff; background: var(--blue); border-color: var(--blue); }
.story-rail__controls svg { width: 17px; height: 17px; }

.story-rail__viewport { overflow: hidden; scroll-behavior: smooth; }
.story-rail__track { display: flex; gap: 14px; }

.rail-card {
  min-width: calc((100% - 42px) / 4);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  transition: transform .28s var(--ease-out), border-color .2s, box-shadow .28s;
}

.rail-card:hover { border-color: rgba(18,104,232,.42); box-shadow: 0 14px 34px rgba(7,30,61,.11); transform: translateY(-4px); }
.rail-card__media { position: relative; display: block; height: 176px; overflow: hidden; }
.rail-card__media::after { position: absolute; inset: 0; background: rgba(7,30,61,.04); content: ""; transition: background .25s; }
.rail-card:hover .rail-card__media::after { background: rgba(7,30,61,0); }
.rail-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease-out); }
.rail-card:hover .rail-card__media img { transform: scale(1.035); }
.rail-card__media .category-chip { position: absolute; z-index: 2; top: 10px; left: 10px; border-radius: 3px; }
.rail-card__body { padding: 13px 14px 12px; }
.rail-card__meta { display: flex; margin-bottom: 8px; align-items: center; justify-content: space-between; color: var(--muted); font-size: 9px; }
.rail-card__body h3 { min-height: 43px; margin-bottom: 13px; font-size: 16px; line-height: 1.28; letter-spacing: -.025em; }
.rail-card__body h3 a:hover { color: var(--blue); }
.rail-card__foot { display: flex; padding-top: 10px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; }
.rail-card__foot span, .rail-card__foot b { display: inline-flex; align-items: center; gap: 5px; }
.rail-card__foot b { color: var(--blue); letter-spacing: .08em; }
.rail-card__foot svg { width: 13px; height: 13px; }

.sidebar-editor-list { display: grid; min-height: 0; gap: 8px; }
.sidebar-editor-card { display: grid; min-width: 0; gap: 9px; grid-template-columns: 72px minmax(0,1fr); }
.sidebar-editor-card__media { height: 52px; overflow: hidden; border-radius: 3px; }
.sidebar-editor-card__media img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-editor-card > div { min-width: 0; }
.sidebar-editor-card span { color: var(--blue); font-size: 7px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.sidebar-editor-card h3 { display: -webkit-box; margin: 2px 0 3px; overflow: hidden; font-size: 10px; line-height: 1.15; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.sidebar-editor-card small { color: var(--muted); font-size: 7px; }

.section-heading { border-bottom-color: #b8c8db; }
.section-heading__title { gap: 12px; }
.section-kicker { color: rgba(18,104,232,.22); font-size: 30px; font-weight: 900; letter-spacing: -.06em; }
.editorial-section--v2 { margin-top: 48px; }

.category-chip,
.status-chip { background: var(--blue); border-radius: 3px; }
.soft-button { border-radius: 4px; }
.surface-panel,
.sidebar-card,
.story-card { border-radius: var(--radius-xs); }
.story-card:hover { border-color: rgba(18,104,232,.4); box-shadow: var(--shadow-sm); }

.selected-banner {
  color: #fff;
  background: #071e3d;
  border: 0;
  border-radius: var(--radius-xs);
}

.selected-banner__content p { color: #c4d2e5; }
.button--dark { color: var(--ink); background: #fff; }
.button--dark:hover { color: #fff; background: var(--blue); }

.newsletter-band { background: #eef5fd; border-color: #d7e3f2; }
.site-footer { background: #06182f; }
.site-footer .brand--news { color: #fff; }
.page-ad-rail > a,
.page-ad-rail > img,
.page-ad-rail > a img { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 1710px) {
  .page-ad-rail { display: block; }
}

/* Final homepage structure: hero + one feed, then a four-column stream */
.home-sidebar--feed-only {
  display: block;
  height: 620px;
  min-height: 620px;
}

.home-sidebar--feed-only .sidebar-card--feed {
  display: flex;
  height: 100%;
  padding: 18px;
  flex-direction: column;
}

.home-sidebar--feed-only .latest-list {
  display: block;
  min-height: 0;
  overflow: hidden;
  flex: 1;
}

.home-sidebar--feed-only .latest-item {
  min-height: 43px;
  padding: 7px 0;
  grid-template-columns: 42px 1fr;
  border-bottom: 1px solid #edf1f6;
}

.home-sidebar--feed-only .latest-item div b {
  display: -webkit-box;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.24;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.infinite-news { margin-top: 40px; }
.infinite-news__heading { margin-bottom: 18px; }
.infinite-news__heading .section-kicker { color: var(--blue); font-size: 11px; letter-spacing: .16em; }

.home-news-grid {
  display: grid;
  gap: 18px 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-news-grid .story-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
}

.home-news-grid .story-card__media { height: 186px; aspect-ratio: auto; }
.home-news-grid .story-card__media::after { inset: 55% 0 0; opacity: .45; }
.home-news-grid .story-card__media .category-chip { top: auto; bottom: 10px; left: 11px; }
.home-news-grid .story-card__body { padding: 13px 14px 12px; }
.home-news-grid .story-card__body h2 { min-height: 44px; margin-bottom: 12px; font-size: 16px; line-height: 1.3; }
.home-news-grid .story-card__summary {
  display: none;
}
.home-news-grid .story-card__footer { padding-top: 10px; border-top: 1px solid var(--line); }

.infinite-pagination { display: none; }
/* v2.0.6 — DLE custom navigation is used as the crawlable source for infinite scroll,
   but must never occupy a card cell in the homepage grid. */
.home-news-grid .pagination,
.home-news-grid > nav.pagination {
  display: none !important;
  grid-column: 1 / -1;
}

.infinite-loader {
  display: flex;
  min-height: 76px;
  margin-top: 8px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--muted);
}
.infinite-loader span { width: 5px; height: 5px; background: var(--blue); border-radius: 50%; animation: loader-dot 1.2s ease-in-out infinite; }
.infinite-loader span:nth-child(2) { animation-delay: .12s; }
.infinite-loader span:nth-child(3) { animation-delay: .24s; }
.infinite-loader b { margin-left: 7px; font-size: 10px; letter-spacing: .04em; }
.infinite-loader.is-complete span { display: none; }
.infinite-loader.is-complete:not(.is-error) b::before { content: "Bütün xəbərlər göstərildi"; }
.infinite-loader.is-complete:not(.is-error) b { font-size: 0; }
.infinite-loader.is-complete:not(.is-error) b::before { font-size: 10px; }
.infinite-loader.is-error b { font-size: 10px; }

@keyframes loader-dot {
  0%, 100% { opacity: .25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-4px); }
}

/* v2.0.3 — legacy SizinXəbər xfield media compatibility */
.article-extra {
  width: 100%;
  max-width: 100%;
  margin: 22px 0;
  overflow: hidden;
}
.article-extra iframe,
.article-extra video,
.article-extra audio,
.article-extra object,
.article-extra embed {
  display: block;
  max-width: 100%;
}
.article-extra--video iframe,
.article-extra--video video {
  width: 100%;
}
.article-extra--video iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 320px;
  border: 0;
}
@media (max-width: 620px) {
  .article-extra { margin: 16px 0; }
  .article-extra--video iframe { min-height: 0; }
}


/* Runtime integrations inherited from the previous live theme.
   Keep counters operational without adding technical UI to the public frontend. */
.footer-runtime-integrations {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.social-row--managed:empty {
  display: none;
}

/* v2.0.5 — category/news listing grid */
.page-shell--category .story-grid--category {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 14px;
}

.page-shell--category .story-card {
  min-width: 0;
  overflow: hidden;
}

.page-shell--category .story-card__media {
  height: 150px;
  aspect-ratio: auto;
}

.page-shell--category .story-card__body {
  padding: 12px;
}

.page-shell--category .story-card__body h2 {
  min-height: 42px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.35;
}

.page-shell--category .story-card__summary {
  display: none;
}

/* v2.0.5 — old managed banner HTML must not participate in footer layout */
.social-row--managed {
  display: none !important;
}


/* v2.0.6 — footer isolation: legacy runtime code cannot affect the accepted footer grid. */
.newsletter-band,
.site-footer {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  clear: both;
}
.newsletter-band__inner > *,
.site-footer__grid > * {
  min-width: 0;
}
.site-footer__grid {
  width: 100%;
}
