@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Montserrat:wght@500;600;700&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,700&display=swap');

@view-transition {
  navigation: auto;
}

:root {
  --editorial-bg: #f3efe6;
  --editorial-surface: rgba(255, 255, 255, 0.78);
  --editorial-surface-strong: rgba(255, 255, 255, 0.9);
  --editorial-ink: #19161b;
  --editorial-muted: rgba(25, 22, 27, 0.66);
  --editorial-line: rgba(25, 22, 27, 0.12);
  --editorial-gold: #caa44a;
  --editorial-gold-deep: #a8822a;
  --editorial-shadow: 0 24px 80px rgba(17, 14, 20, 0.12);
  --editorial-radius: 26px;
}

body.editorial-page {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(27, 26, 36, 0.09), transparent 24%),
    var(--editorial-bg);
  color: var(--editorial-ink);
  font-family: 'Manrope', sans-serif;
}

body.editorial-page h1,
body.editorial-page h2,
body.editorial-page h3,
body.editorial-page h4,
body.editorial-page h5,
body.editorial-page h6,
body.editorial-page .section-kicker,
body.editorial-page .eyebrow,
body.editorial-page .article-title {
  font-family: 'Newsreader', serif;
}

body.editorial-page h3.footer-logo {
  font-family: var(--heading-font);
}

body.editorial-page p,
body.editorial-page li,
body.editorial-page span,
body.editorial-page input,
body.editorial-page textarea,
body.editorial-page button,
body.editorial-page select {
  font-family: 'Manrope', sans-serif;
}

body.editorial-page .container {
  max-width: 1240px;
}

body.editorial-page .section {
  position: relative;
  padding: 7rem 0;
}

body.editorial-page .section--tight {
  padding: 4.5rem 0;
}

body.editorial-page .section--dark {
  background:
    linear-gradient(180deg, rgba(25, 22, 27, 0.96), rgba(25, 22, 27, 0.92)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 34%);
  color: #f7f3eb;
}

body.editorial-page .section--muted {
  background-color: rgba(255, 255, 255, 0.52);
}

body.editorial-page .section-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(25, 22, 27, 0.06));
  mask-image: linear-gradient(to bottom, transparent, black 50%, transparent);
}

body.editorial-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--editorial-gold-deep);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.editorial-page .eyebrow::before {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

body.editorial-page .section-title {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

body.editorial-page .section-intro,
body.editorial-page .lead-copy,
body.editorial-page .article-lead {
  max-width: 46rem;
  color: var(--editorial-muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

body.editorial-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--editorial-ink);
  color: #f8f4ed !important;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: none;
}

body.editorial-page .btn:hover {
  background: #0f0c12;
  color: #ffffff !important;
  transform: translateY(-1px);
}

body.editorial-page .btn-outline {
  background: transparent;
  color: var(--editorial-ink) !important;
  border-color: rgba(25, 22, 27, 0.14);
}

body.editorial-page .section--dark .btn-outline {
  color: #f7f3eb !important;
  border-color: rgba(247, 243, 235, 0.22);
}

body.editorial-page .btn-accent {
  background: var(--editorial-gold);
  color: #1b1a24 !important;
}

body.editorial-page .btn-accent:hover {
  background: #d6b15a;
}

body.editorial-page .btn-row,
body.editorial-page .inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

body.editorial-page .nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  background: transparent !important;
  backdrop-filter: blur(0);
}

body.editorial-page .nav-container .container {
  max-width: 1200px;
}

body.editorial-page .nav-container.scrolled {
  background: rgba(243, 239, 230, 0.88) !important;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(17, 14, 20, 0.08) !important;
}

body.editorial-page .nav-container .logo,
body.editorial-page .nav-container .nav-link,
body.editorial-page .nav-container .bar {
  color: var(--editorial-ink) !important;
  fill: var(--editorial-ink) !important;
}

body.editorial-page.theme-dark-hero .nav-container:not(.scrolled) .logo,
body.editorial-page.theme-dark-hero .nav-container:not(.scrolled) .nav-link,
body.editorial-page.theme-dark-hero .nav-container:not(.scrolled) .bar,
body.editorial-page.theme-dark-hero .nav-container:not(.scrolled) .language-switcher-item select {
  color: #f8f4ed !important;
  fill: #f8f4ed !important;
}

body.editorial-page .nav-container .logo img {
  filter: invert(1) !important;
}

body.editorial-page.theme-dark-hero .nav-container:not(.scrolled) .logo img {
  filter: none !important;
}

body.editorial-page .language-switcher-item select {
  color: var(--editorial-ink) !important;
  font-family: var(--heading-font);
  font-size: 0.9rem;
}

body.editorial-page .nav-link {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

body.editorial-page .menu-toggle {
  display: none;
}

body.editorial-page .nav-wrapper {
  padding: 0;
}

body.editorial-page .nav-container.scrolled .logo img {
  filter: invert(1) !important;
}

body.editorial-page .hero {
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  align-items: stretch;
  isolation: isolate;
}

body.editorial-page .hero--compact {
  min-height: 72vh;
  height: 72vh;
}

body.editorial-page .hero-bg {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: translate3d(0, var(--drift-y, 0px), 0) scale(var(--hero-scale, 1.05));
  transition: transform 120ms linear;
}

body.editorial-page .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(17, 14, 20, 0.45));
  pointer-events: none;
  z-index: 1;
}

body.editorial-page .hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 3rem));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(7.25rem, 13vh, 10.5rem) 0 clamp(4.5rem, 8vh, 6.5rem);
  display: flex;
  align-items: flex-end;
  text-align: left;
}

body.editorial-page .hero--compact .hero-content {
  padding-top: clamp(6.75rem, 11vh, 8.5rem);
  padding-bottom: clamp(3.5rem, 6vh, 4.75rem);
}

body.editorial-page .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
  width: 100%;
  gap: 2rem;
  align-items: end;
}

body.editorial-page .hero-copy {
  max-width: 48rem;
}

body.editorial-page .hero-title {
  margin-bottom: 1.4rem;
  font-size: clamp(3.3rem, 8vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

body.editorial-page .hero-subtitle {
  max-width: 44rem;
  margin-bottom: 0;
  color: rgba(248, 244, 237, 0.82);
  font-size: 1.1rem;
  line-height: 1.8;
}

body.editorial-page .hero-note,
body.editorial-page .glass-panel,
body.editorial-page .data-card,
body.editorial-page .story-note,
body.editorial-page .editorial-card,
body.editorial-page .resource-card,
body.editorial-page .archive-card,
body.editorial-page .journal-card,
body.editorial-page .submission-card,
body.editorial-page .quote-panel,
body.editorial-page .case-study-card,
body.editorial-page .meta-rail,
body.editorial-page .article-aside,
body.editorial-page .contact-panel,
body.editorial-page .stats-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--editorial-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: var(--editorial-shadow);
  backdrop-filter: blur(22px);
}

body.editorial-page .hero-note {
  padding: 1.5rem;
  color: #f8f4ed;
}

body.editorial-page .hero-note h2,
body.editorial-page .hero-note h3 {
  margin-bottom: 0.85rem;
  font-size: 1.6rem;
}

body.editorial-page .hero-note p,
body.editorial-page .hero-note li {
  color: rgba(248, 244, 237, 0.78);
  margin-bottom: 0.85rem;
}

body.editorial-page .proof-grid,
body.editorial-page .featured-grid,
body.editorial-page .resource-grid,
body.editorial-page .journal-grid,
body.editorial-page .archive-grid,
body.editorial-page .story-grid,
body.editorial-page .split-grid,
body.editorial-page .article-related,
body.editorial-page .mini-grid {
  display: grid;
  gap: 1.5rem;
}

body.editorial-page .proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.editorial-page .featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.editorial-page .resource-grid,
body.editorial-page .journal-grid,
body.editorial-page .archive-grid,
body.editorial-page .article-related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.editorial-page .story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.editorial-page .split-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

body.editorial-page .stats-card,
body.editorial-page .editorial-card,
body.editorial-page .resource-card,
body.editorial-page .archive-card,
body.editorial-page .journal-card,
body.editorial-page .case-study-card,
body.editorial-page .submission-card {
  overflow: hidden;
  padding: 1.45rem;
  background: var(--editorial-surface);
  border: 1px solid var(--editorial-line);
  backdrop-filter: blur(0);
}

body.editorial-page .stats-card strong,
body.editorial-page .key-stat {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--editorial-gold-deep);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.editorial-page .stats-card p,
body.editorial-page .editorial-card p,
body.editorial-page .resource-card p,
body.editorial-page .archive-card p,
body.editorial-page .journal-card p,
body.editorial-page .case-study-card p,
body.editorial-page .submission-card p {
  margin-bottom: 0;
  color: var(--editorial-muted);
  line-height: 1.72;
}

body.editorial-page .feature-card__image,
body.editorial-page .resource-card__image,
body.editorial-page .journal-card__image,
body.editorial-page .case-study-card__image,
body.editorial-page .article-hero__image,
body.editorial-page .story-image img,
body.editorial-page .spotlight-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  object-fit: cover;
  overflow: hidden;
}

body.editorial-page .feature-card__image,
body.editorial-page .case-study-card__image,
body.editorial-page .journal-card__image {
  margin-bottom: 1.2rem;
}

body.editorial-page .feature-card__title,
body.editorial-page .resource-card__title,
body.editorial-page .journal-card__title,
body.editorial-page .case-study-card__title {
  margin-bottom: 0.7rem;
  font-size: 1.85rem;
  line-height: 1.05;
}

body.editorial-page .card-meta,
body.editorial-page .meta-list,
body.editorial-page .article-meta,
body.editorial-page .case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-bottom: 1rem;
  color: var(--editorial-muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.editorial-page .badge-row,
body.editorial-page .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.35rem;
}

body.editorial-page .pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(202, 164, 74, 0.14);
  color: var(--editorial-gold-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

body.editorial-page .band-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: stretch;
}

body.editorial-page .spotlight-card,
body.editorial-page .quote-panel,
body.editorial-page .submission-card,
body.editorial-page .article-lead-panel {
  padding: 1.75rem;
  border-radius: var(--editorial-radius);
  background: var(--editorial-surface-strong);
  border: 1px solid var(--editorial-line);
}

body.editorial-page .spotlight-card__image {
  margin-bottom: 1.2rem;
}

body.editorial-page .quote-panel {
  background: linear-gradient(180deg, rgba(202, 164, 74, 0.1), rgba(255, 255, 255, 0.7));
}

body.editorial-page .quote-panel blockquote {
  margin: 0;
}

body.editorial-page .quote-panel p {
  margin-bottom: 1rem;
  font-size: 1.24rem;
  line-height: 1.7;
}

body.editorial-page .quote-panel cite {
  color: var(--editorial-muted);
  font-style: normal;
}

body.editorial-page .tabs-shell {
  margin-top: 2.4rem;
}

body.editorial-page .tabs-list {
  display: inline-flex;
  gap: 0.4rem;
  margin-bottom: 2rem;
  padding: 0.35rem;
  border: 1px solid var(--editorial-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

body.editorial-page .tab-trigger {
  min-height: 46px;
  padding: 0.7rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--editorial-muted);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

body.editorial-page .tab-trigger[aria-selected="true"] {
  background: var(--editorial-ink);
  color: #f7f3eb;
}

body.editorial-page .media-panel[hidden] {
  display: none;
}

body.editorial-page .article-shell,
body.editorial-page .case-study-shell {
  padding-top: 8rem;
}

body.editorial-page .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  color: var(--editorial-muted);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

body.editorial-page .breadcrumbs a {
  color: inherit;
}

body.editorial-page .article-layout,
body.editorial-page .case-study-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.6fr);
  gap: 2rem;
}

body.editorial-page .article-content,
body.editorial-page .case-study-content {
  min-width: 0;
}

body.editorial-page .article-content h2,
body.editorial-page .case-study-content h2 {
  margin-top: 2.6rem;
  margin-bottom: 1rem;
  font-size: 2.1rem;
}

body.editorial-page .article-content p,
body.editorial-page .case-study-content p,
body.editorial-page .story-caption {
  color: var(--editorial-muted);
  line-height: 1.86;
}

body.editorial-page .article-aside,
body.editorial-page .meta-rail {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--editorial-line);
  backdrop-filter: blur(18px);
}

body.editorial-page .meta-rail dl,
body.editorial-page .article-aside dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 0;
}

body.editorial-page .meta-rail dt,
body.editorial-page .article-aside dt {
  color: var(--editorial-gold-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.editorial-page .meta-rail dd,
body.editorial-page .article-aside dd {
  margin: 0;
  color: var(--editorial-ink);
}

body.editorial-page .story-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--editorial-line);
}

body.editorial-page .story-image {
  margin: 1.3rem 0 1rem;
}

body.editorial-page .story-image img {
  aspect-ratio: 16 / 10;
}

body.editorial-page .story-image--portrait img {
  aspect-ratio: 4 / 5;
}

body.editorial-page .story-image figcaption {
  margin-top: 0.8rem;
  color: var(--editorial-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

body.editorial-page .contact-panel,
body.editorial-page .newsletter-panel {
  padding: 1.75rem;
  border-radius: var(--editorial-radius);
  background: linear-gradient(180deg, rgba(27, 26, 36, 0.95), rgba(27, 26, 36, 0.9));
  color: #f7f3eb;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.editorial-page .newsletter-panel p,
body.editorial-page .contact-panel p {
  color: rgba(247, 243, 235, 0.78);
}

body.editorial-page .newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

body.editorial-page .newsletter-form input[type="email"] {
  flex: 1 1 260px;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f7f3eb;
}

body.editorial-page .newsletter-form input::placeholder {
  color: rgba(247, 243, 235, 0.56);
}

body.editorial-page .footer {
  background: #151218;
  color: #f7f3eb;
}

body.editorial-page .footer a,
body.editorial-page .footer p,
body.editorial-page .footer h4 {
  color: inherit;
}

body.editorial-page .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

body.editorial-page .footer .logo-image {
  filter: none;
}

body.editorial-page .footer-nav,
body.editorial-page .social-links {
  list-style: none;
  padding: 0;
}

body.editorial-page .footer-nav-item,
body.editorial-page .social-item {
  margin-bottom: 0.65rem;
}

body.editorial-page .social-links {
  display: flex;
  gap: 0.85rem;
}

body.editorial-page .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

body.editorial-page .card-link {
  display: block;
  color: inherit;
}

body.editorial-page .card-link:hover {
  color: inherit;
}

@media (pointer: fine) {
  body.editorial-page .case-study-card:hover,
  body.editorial-page .editorial-card:hover,
  body.editorial-page .resource-card:hover,
  body.editorial-page .journal-card:hover,
  body.editorial-page .archive-card:hover,
  body.editorial-page .stats-card:hover,
  body.editorial-page .social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(17, 14, 20, 0.16);
  }
}

body.editorial-page [data-parallax] {
  transform: translate3d(0, var(--drift-y, 0px), 0);
  will-change: transform;
}

body.editorial-page .vt-card-iberico,
body.editorial-page .vt-hero-iberico {
  view-transition-name: case-iberico-house;
}

body.editorial-page .vt-card-madeira,
body.editorial-page .vt-hero-madeira {
  view-transition-name: case-house-madeira;
}

body.editorial-page .vt-card-mountains,
body.editorial-page .vt-hero-mountains {
  view-transition-name: case-house-mountains;
}

body.editorial-page .vt-card-nio,
body.editorial-page .vt-hero-nio {
  view-transition-name: case-nio-house;
}

body.editorial-page .vt-card-journal-portugal,
body.editorial-page .vt-hero-journal-portugal {
  view-transition-name: article-portugal;
}

body.editorial-page .vt-card-journal-home,
body.editorial-page .vt-hero-journal-home {
  view-transition-name: article-home;
}

body.editorial-page .vt-card-journal-global,
body.editorial-page .vt-hero-journal-global {
  view-transition-name: article-global;
}

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

@media (max-width: 991px) {
  body.editorial-page .hero {
    min-height: 92vh;
    height: 92vh;
  }

  body.editorial-page .hero-grid,
  body.editorial-page .band-grid,
  body.editorial-page .split-grid,
  body.editorial-page .article-layout,
  body.editorial-page .case-study-layout {
    grid-template-columns: 1fr;
  }

  body.editorial-page .proof-grid,
  body.editorial-page .featured-grid,
  body.editorial-page .resource-grid,
  body.editorial-page .journal-grid,
  body.editorial-page .archive-grid,
  body.editorial-page .story-grid,
  body.editorial-page .article-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.editorial-page .hero-content {
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
  }

  body.editorial-page .hero--compact {
    min-height: 68vh;
    height: 68vh;
  }

  body.editorial-page .hero--compact .hero-content {
    padding-top: 7rem;
    padding-bottom: 3.75rem;
  }

  body.editorial-page .article-aside,
  body.editorial-page .meta-rail {
    position: static;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  body.editorial-page .nav-container .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  body.editorial-page .nav-container .container {
    max-width: 1140px;
  }
}

@media (max-width: 768px) {
  body.editorial-page .nav-wrapper {
    position: relative;
    justify-content: space-between;
    padding: 0;
  }

  body.editorial-page .menu-toggle {
    display: block;
    cursor: pointer;
  }

  body.editorial-page .menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  body.editorial-page .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.editorial-page .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  body.editorial-page .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.editorial-page .nav-menu {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, calc(100vw - 2rem));
    padding: 1rem;
    border-radius: 22px;
    background: rgba(243, 239, 230, 0.96);
    box-shadow: 0 30px 60px rgba(17, 14, 20, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  body.editorial-page .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.editorial-page .nav-item {
    margin: 0;
  }

  body.editorial-page .nav-link {
    display: block;
    padding: 0.8rem 0.25rem;
  }

  body.editorial-page .proof-grid,
  body.editorial-page .featured-grid,
  body.editorial-page .resource-grid,
  body.editorial-page .journal-grid,
  body.editorial-page .archive-grid,
  body.editorial-page .story-grid,
  body.editorial-page .article-related {
    grid-template-columns: 1fr;
  }

  body.editorial-page .hero-title {
    font-size: clamp(2.8rem, 12vw, 4.6rem);
  }

  body.editorial-page .hero-subtitle {
    font-size: 1rem;
  }

  body.editorial-page .hero-content {
    width: min(1120px, calc(100% - 2rem));
    padding-top: 6.75rem;
    padding-bottom: 3.5rem;
  }

  body.editorial-page .hero--compact {
    min-height: 64vh;
    height: 64vh;
  }

  body.editorial-page .hero--compact .hero-content {
    padding-top: 6.35rem;
    padding-bottom: 3rem;
  }

  body.editorial-page .section {
    padding: 5.25rem 0;
  }

  body.editorial-page .tabs-list,
  body.editorial-page .btn-row,
  body.editorial-page .inline-actions,
  body.editorial-page .newsletter-form {
    width: 100%;
  }

  body.editorial-page .tabs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.editorial-page *,
  body.editorial-page *::before,
  body.editorial-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body.editorial-page [data-parallax],
  body.editorial-page .hero-bg {
    transform: none !important;
  }
}
