/**
 * WWC One Media — Layout C Hybrid Stream
 * Accent: #DC2626 (red-600). Inter/system sans. Rounded cards. Dual-mode desk.
 */

:root {
  --wwc-red: #dc2626;
  --wwc-navy: #0b1f3a;
  --wwc-red-soft: #fef2f2;
  --wwc-ink: #0b1f3a;
  --wwc-muted: #525252;
  --wwc-muted-2: #a3a3a3;
  --wwc-border: #e5e5e5;
  --wwc-border-soft: #f5f5f5;
  --wwc-bg: #ffffff;
  --wwc-bg-soft: #fafafa;
  --wwc-dark: #0b1f3a;
  --wwc-radius: 1rem;
  --wwc-radius-sm: 0.75rem;
  --wwc-radius-xl: 1.25rem;
  --wwc-max: 72rem; /* ~max-w-6xl */
  --wwc-header-h: 3.5rem;
  --wwc-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --wwc-serif: Georgia, "Times New Roman", "Liberation Serif", serif;
  --wwc-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--wwc-font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--wwc-ink);
  background: var(--wwc-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--wwc-red);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--wwc-red);
  outline-offset: 2px;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wwc-serif);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  color: var(--wwc-ink);
}

p {
  margin: 0 0 0.75rem;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--wwc-ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.label {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.625rem;
  font-weight: 700;
  font-family: var(--wwc-font);
  line-height: 1.2;
}

.label--red {
  color: var(--wwc-red);
}

.label--muted {
  color: var(--wwc-muted);
}

/* ——— Header (sticky Hybrid chrome) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--wwc-border);
}

.site-header__inner {
  max-width: var(--wwc-max);
  margin: 0 auto;
  padding: 0 1rem;
  height: var(--wwc-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
}

.site-title {
  font-family: var(--wwc-font);
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--wwc-ink);
  white-space: nowrap;
}

.site-title:hover {
  color: var(--wwc-ink);
}

.site-title__one {
  color: var(--wwc-red);
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img,
.site-logo .custom-logo {
  display: block;
  height: 2.75rem; /* ~44px */
  width: auto;
  max-height: 3.5rem; /* 56px */
  max-width: 13rem;
  object-fit: contain;
}

.site-logo--footer img,
.site-logo--footer .custom-logo {
  height: 2.5rem;
  max-height: 3rem;
  filter: none;
}

.site-footer .site-logo {
  display: inline-flex;
}

.primary-nav__panel .nav-list,
.nav-list {
  display: none;
  gap: 1rem;
  align-items: center;
}

.nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #525252;
}

.nav-list a:hover,
.nav-list .current-menu-item > a,
.nav-list .is-current > a {
  color: var(--wwc-ink);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--wwc-ink);
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.primary-nav__panel.is-open {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--wwc-header-h);
  background: #fff;
  border-bottom: 1px solid var(--wwc-border);
  padding: 1rem;
  box-shadow: var(--wwc-shadow);
}

.primary-nav__panel.is-open .nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.subscribe-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wwc-red);
  white-space: nowrap;
}

.subscribe-cta:hover {
  color: #b91c1c;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .primary-nav__panel,
  .primary-nav__panel .nav-list {
    display: flex !important;
    position: static;
    padding: 0;
    border: 0;
    box-shadow: none;
    flex-direction: row;
  }
}

/* ——— Layout shells ——— */
.site-main,
.section-wrap {
  max-width: var(--wwc-max);
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

.hybrid-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
}

.hybrid-main {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hybrid-aside {
  grid-column: span 12;
}

@media (min-width: 1024px) {
  .hybrid-main { grid-column: span 7; }
  .hybrid-aside { grid-column: span 5; }
}

/* ——— Lead card ——— */
.lead-card {
  border: 1px solid var(--wwc-border);
  border-radius: var(--wwc-radius-xl);
  overflow: hidden;
  background: #fff;
}

.lead-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #262626 0%, #dc2626 100%);
  overflow: hidden;
}

.lead-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-card__body {
  padding: 1.25rem;
}

.lead-card__kicker {
  margin-bottom: 0.25rem;
}

.lead-card__title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.lead-card__title a:hover {
  color: var(--wwc-red);
}

.lead-card__excerpt {
  color: #525252;
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.lead-card--empty .lead-card__media {
  min-height: 12rem;
}

/* ——— Story set ——— */
.story-set__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.story-set__title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--wwc-font);
}

.story-set__meta {
  font-size: 0.75rem;
  color: var(--wwc-muted);
}

.story-set__grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .story-set__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.story-card {
  border: 1px solid var(--wwc-border);
  border-radius: var(--wwc-radius-sm);
  padding: 0.75rem;
  background: #fff;
  height: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.story-card:hover {
  border-color: #d4d4d4;
  box-shadow: var(--wwc-shadow);
}

.story-card__kicker {
  margin-bottom: 0.25rem;
}

.story-card__title {
  font-family: var(--wwc-font);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.story-card--media {
  padding: 0;
  overflow: hidden;
}

.story-card--media .story-card__media {
  aspect-ratio: 16 / 9;
  background: #e5e5e5;
}

.story-card--media .story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card--media .story-card__body {
  padding: 1rem;
}

.story-card--media .story-card__title {
  font-family: var(--wwc-serif);
  font-size: 1rem;
  font-weight: 700;
}

.lifestyle-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lifestyle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.section-heading {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--wwc-font);
  margin-bottom: 0.75rem;
}

.section-heading--serif {
  font-family: var(--wwc-serif);
  font-size: 1.5rem;
}

/* ——— Feed (sticky right rail) ——— */
.feed-panel {
  border: 1px solid var(--wwc-border);
  border-radius: var(--wwc-radius-xl);
  overflow: hidden;
  background: #fff;
}

@media (min-width: 1024px) {
  .feed-panel {
    position: sticky;
    top: calc(var(--wwc-header-h) + 1.25rem);
  }
}

.feed-tabs {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 1rem 0;
  border-bottom: 1px solid var(--wwc-border);
  font-size: 0.875rem;
  font-weight: 600;
}

.feed-tabs__btn {
  padding: 0 0 0.5rem;
  color: var(--wwc-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.feed-tabs__btn.is-active {
  color: var(--wwc-red);
  border-bottom-color: var(--wwc-red);
}

.feed-list {
  max-height: 70vh;
  overflow: auto;
  overscroll-behavior: contain;
}

.feed-item {
  display: block;
  padding: 1rem;
  border-bottom: 1px solid var(--wwc-border-soft);
  transition: background 0.12s ease;
}

.feed-item:last-child {
  border-bottom: 0;
}

.feed-item:hover {
  background: var(--wwc-bg-soft);
  color: inherit;
}

.feed-item__meta {
  margin-bottom: 0.25rem;
  color: var(--wwc-muted);
}

.feed-item__title {
  font-family: var(--wwc-font);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.feed-panel__empty {
  padding: 1.5rem 1rem;
  color: var(--wwc-muted);
  font-size: 0.875rem;
}

[data-wwc-feed-panel]:not(.is-active) {
  display: none;
}

[data-wwc-feed-panel].is-active {
  display: block;
}

/* ——— Section rails ——— */
.section-rail {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--wwc-border);
}

.section-rail__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-rail__title {
  font-size: 1.5rem;
  font-weight: 700;
}

.section-rail__more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wwc-red);
  font-family: var(--wwc-font);
}

.section-rail__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .section-rail__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.rail-card__media {
  aspect-ratio: 4 / 3;
  background: #e5e5e5;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.rail-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rail-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

/* ——— Most read ——— */
.most-read {
  background: var(--wwc-bg-soft);
  border: 1px solid var(--wwc-border);
  border-radius: var(--wwc-radius);
  padding: 1rem;
}

.most-read__title {
  font-family: var(--wwc-font);
  margin-bottom: 0.75rem;
}

.most-read__list {
  list-style: decimal;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.most-read__list a:hover {
  color: var(--wwc-red);
}

/* ——— Newsletter ——— */
.newsletter {
  max-width: var(--wwc-max);
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.newsletter__inner {
  border-radius: var(--wwc-radius-xl);
  background: var(--wwc-dark);
  color: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .newsletter__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.newsletter__label {
  color: #f87171;
  margin-bottom: 0.25rem;
}

.newsletter__title {
  font-family: var(--wwc-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.newsletter__text {
  color: #d4d4d4;
  font-size: 0.875rem;
  margin: 0;
}

.newsletter__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wwc-red);
  color: #fff !important;
  padding: 0.75rem 1.25rem;
  border-radius: var(--wwc-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.newsletter__btn:hover {
  background: #b91c1c;
}

.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.newsletter__input {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.75rem 1rem;
  border-radius: var(--wwc-radius-sm);
  border: 1px solid #404040;
  background: #262626;
  color: #fff;
}

.newsletter__input::placeholder {
  color: #a3a3a3;
}

/* ——— Below-fold lower stack ——— */
.lower-stack {
  max-width: var(--wwc-max);
  margin: 0 auto;
  padding: 0 1rem 2rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.lower-stack__main { grid-column: span 12; }
.lower-stack__side { grid-column: span 12; }

@media (min-width: 768px) {
  .lower-stack__main { grid-column: span 8; }
  .lower-stack__side { grid-column: span 4; }
}

.asia-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.asia-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--wwc-border-soft);
}

.asia-item:last-child { border-bottom: 0; padding-bottom: 0; }

.asia-item__media {
  flex: 0 0 9rem;
  aspect-ratio: 16 / 9;
  background: #e5e5e5;
  border-radius: 0.5rem;
  overflow: hidden;
}

.asia-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asia-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0.25rem 0 0;
}

/* ——— Single / archive / search / 404 ——— */
.content-wrap {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.page-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.entry-meta {
  font-size: 0.8125rem;
  color: var(--wwc-muted);
  font-family: var(--wwc-font);
  margin-bottom: 1.5rem;
}

.entry-content {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.entry-content > * + * {
  margin-top: 1rem;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.75rem;
}

.entry-content a {
  color: var(--wwc-red);
  text-decoration: underline;
}

.archive-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.archive-card {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--wwc-border);
}

@media (min-width: 640px) {
  .archive-card {
    grid-template-columns: 12rem 1fr;
  }
}

.archive-card__media {
  aspect-ratio: 16 / 9;
  background: #e5e5e5;
  border-radius: 0.5rem;
  overflow: hidden;
}

.archive-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pagination {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  font-family: var(--wwc-font);
  font-weight: 600;
  font-size: 0.875rem;
}

.pagination a {
  color: var(--wwc-red);
}

.empty-state {
  padding: 2rem 0;
  color: var(--wwc-muted);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--wwc-dark);
  color: #d4d4d4;
  margin-top: 1rem;
  padding: 2.5rem 0 2rem;
  font-size: 0.875rem;
  font-family: var(--wwc-font);
}

.site-footer__inner {
  max-width: var(--wwc-max);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-title--footer {
  color: #fff;
  font-size: 1rem;
}

.site-footer__tagline {
  margin: 0.35rem 0 0;
  color: #a3a3a3;
  font-size: 0.8125rem;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-nav__list a {
  color: #d4d4d4;
}

.footer-nav__list a:hover {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #404040;
  color: #a3a3a3;
}

.site-footer__bottom a {
  color: #a3a3a3;
}

.site-footer__bottom a:hover {
  color: #fff;
}


/* ——— Homepage sectioned layout ——— */
.home-wrap {
  max-width: var(--wwc-max);
  margin: 0 auto;
  padding: 1.25rem 1rem 2rem;
}

.home-lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--wwc-border);
}

@media (min-width: 900px) {
  .home-lead {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    align-items: start;
  }
}

.home-lead__side {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.home-lead__side .story-card--media {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.home-lead__side .story-card__media {
  aspect-ratio: 16 / 10;
  margin: 0;
}

.home-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 960px) {
  .home-body {
    grid-template-columns: minmax(0, 1fr) 17.5rem;
    align-items: start;
  }
}

.home-sections {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.home-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 960px) {
  .home-aside {
    position: sticky;
    top: calc(var(--wwc-header-h) + 0.75rem);
  }
}

.home-aside__panel {
  background: var(--wwc-bg-soft);
  border: 1px solid var(--wwc-border);
  border-radius: var(--wwc-radius);
  padding: 0.85rem;
}

.home-aside__label {
  margin-bottom: 0.5rem;
  font-family: var(--wwc-font);
}

.home-aside__latest {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 28rem;
  overflow: auto;
}

/* Featured section layout: 1 large + side stack */
.section-rail__featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .section-rail__featured {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 1.25rem;
  }
}

.section-rail__side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-rail__side .story-card--compact {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
}

.section-rail__side .story-card__media {
  aspect-ratio: 1 / 1;
  border-radius: 0.5rem;
  margin: 0;
}

.section-rail__side .story-card__title {
  font-size: 0.95rem;
}

/* Story cards always have media */
.story-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: #e5e5e5;
  border-radius: var(--wwc-radius-sm);
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.story-card__media img,
.story-card__media-ph,
.lead-card__media-ph,
.rail-card__media-ph,
.archive-card__media-ph,
.feed-item__media-ph,
.entry-featured__ph,
.related-card__media-ph {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card__media-ph,
.lead-card__media-ph,
.rail-card__media-ph,
.archive-card__media-ph,
.feed-item__media-ph,
.entry-featured__ph,
.related-card__media-ph {
  background: linear-gradient(135deg, #e5e5e5 0%, #f5f5f5 50%, #e5e5e5 100%);
  min-height: 100%;
}

.story-card--media .story-card__body {
  min-width: 0;
}

.story-card--compact .story-card__kicker {
  margin-bottom: 0.2rem;
}

.lead-card__media-ph {
  min-height: 12rem;
}

/* Feed items with thumbs */
.feed-item--thumb {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--wwc-border-soft);
}

.feed-item--thumb:last-child {
  border-bottom: 0;
}

.feed-item__media {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 0.4rem;
  overflow: hidden;
  background: #e5e5e5;
}

.feed-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.feed-item__title {
  font-family: var(--wwc-serif);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--wwc-ink);
}

.feed-item--thumb:hover .feed-item__title {
  color: var(--wwc-red);
}

/* Single: featured image above title */
.entry-featured {
  margin: 0 0 1.25rem;
  border-radius: var(--wwc-radius);
  overflow: hidden;
  background: #e5e5e5;
  aspect-ratio: 16 / 9;
}

.entry-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.entry-featured--empty {
  aspect-ratio: 16 / 9;
}

.entry-footer {
  margin-top: 2rem;
}

.entry-single .entry-header {
  margin-bottom: 1rem;
}

/* Ad slots — reserved min-heights reduce CLS when creatives load */
.wwc-ad-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0.75rem 0;
  contain: layout;
}

.wwc-ad-slot--ads-header {
  max-width: var(--wwc-max);
  margin: 0.5rem auto;
  padding: 0.5rem 1rem;
  min-height: 90px;
}

.wwc-ad-slot--ads-footer {
  max-width: var(--wwc-max);
  margin: 1rem auto 0;
  padding: 0.75rem 1rem;
  min-height: 90px;
}

.wwc-ad-slot--ads-in-feed {
  margin: 1.25rem 0;
  padding: 0.5rem 0;
  min-height: 90px;
}

.wwc-ad-slot--ads-sidebar {
  margin: 0.25rem 0;
  min-height: 250px;
}

.wwc-ad-slot--ads-before-content,
.wwc-ad-slot--ads-after-content {
  margin: 1rem 0;
  min-height: 90px;
}

.wwc-ad-widget {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.wwc-ad-unit {
  display: inline-block;
  max-width: 100%;
  line-height: 0;
}

.wwc-ad-unit iframe,
.wwc-ad-unit img {
  max-width: 100%;
  height: auto;
}

.wwc-ad-slot__placeholder {
  width: 100%;
  border: 1px dashed var(--wwc-border);
  border-radius: var(--wwc-radius-sm);
  background: var(--wwc-bg-soft);
  color: var(--wwc-muted);
  font-family: var(--wwc-font);
  font-size: 0.75rem;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  min-height: 3.5rem;
  justify-content: center;
}

.wwc-ad-slot__label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wwc-ad-slot__id {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--wwc-muted-2);
}

.rail-card__media {
  position: relative;
}

.rail-card__media-ph {
  position: absolute;
  inset: 0;
}

.archive-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: #e5e5e5;
  border-radius: var(--wwc-radius-sm);
  overflow: hidden;
}

.archive-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ——— Utilities ——— */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }


/* ——— Countries secondary nav ——— */
.countries-nav {
  border-bottom: 1px solid var(--wwc-border);
  background: var(--wwc-bg-soft);
}

.countries-nav__inner {
  max-width: var(--wwc-max);
  margin: 0 auto;
  padding: 0.4rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
}

.countries-nav__label {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wwc-muted);
}

.countries-nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: nowrap;
}

.countries-nav__list a {
  display: inline-block;
  white-space: nowrap;
  padding: 0.35rem 0.55rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #525252;
  border-radius: 999px;
}

.countries-nav__list a:hover {
  color: var(--wwc-red);
  background: var(--wwc-red-soft);
}

/* Primary nav Countries dropdown */
.nav-item--dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  font-size: 0.875rem;
  font-weight: 500;
  color: #525252;
  padding: 0;
}

.nav-dropdown__toggle:hover {
  color: var(--wwc-ink);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 11rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  background: #fff;
  border: 1px solid var(--wwc-border);
  border-radius: var(--wwc-radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 50;
}

.nav-dropdown.is-open,
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  color: #525252;
}

.nav-dropdown a:hover {
  color: var(--wwc-red);
  background: var(--wwc-red-soft);
}

@media (max-width: 767px) {
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    margin: 0.25rem 0 0 0.75rem;
    padding: 0;
    min-width: 0;
  }
  .nav-dropdown.is-open {
    display: block;
  }
}

/* Across Asia & Beyond block */
.countries-block {
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--wwc-ink);
}

.countries-block__head {
  margin: 1rem 0 1.25rem;
}

.countries-block__title {
  font-size: 1.5rem;
  margin: 0;
}

/* Related posts */
.related-posts {
  margin: 2.5rem 0 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--wwc-border);
}

.related-posts__head {
  margin-bottom: 1rem;
}

.related-posts__title {
  font-size: 1.35rem;
  margin: 0;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .related-posts__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.related-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: var(--wwc-radius-sm);
  overflow: hidden;
  background: #e5e5e5;
  margin-bottom: 0.6rem;
}

.related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card__kicker {
  margin-bottom: 0.25rem;
}

.related-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.35rem;
}

.related-card__title a:hover {
  color: var(--wwc-red);
}

.related-card__date {
  font-size: 0.75rem;
  color: var(--wwc-muted);
  margin: 0;
}
