/*
Theme Name: ErasureFan
Theme URI: https://erasurefan.com
Author: ShinerOps for ErasureFan.com
Description: Custom classic theme for ErasureFan.com, an unofficial Erasure fan and reference site.
Version: 0.4.12
Text Domain: erasurefan
*/

:root {
  --ef-bg: #0f1021;
  --ef-bg-soft: #181a32;
  --ef-surface: #1f2347;
  --ef-text: #f5f7ff;
  --ef-text-soft: #c6cae8;
  --ef-accent: #ff4fa3;
  --ef-accent-2: #5de2e7;
  --ef-border: rgba(255,255,255,0.12);
  --ef-max: 1200px;
  --ef-gap: 1.5rem;
  --ef-radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, var(--ef-bg) 0%, #151735 100%);
  color: var(--ef-text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

a { color: var(--ef-accent-2); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }

.card-link {
  padding: 0;
  overflow: hidden;
}

.card-link__target {
  display: block;
  color: inherit;
  padding: 1.5rem;
  height: 100%;
}

.card-link__target:hover,
.card-link__target:focus {
  text-decoration: none;
}

.card-link__target:focus-visible,
.album-grid-card__link:focus-visible {
  outline: 3px solid rgba(93,226,231,0.85);
  outline-offset: -3px;
}

.card-link__target h2,
.card-link__target .entry-title {
  color: var(--ef-text);
}
img { max-width: 100%; height: auto; display: block; }

.site-main,
.site-hero,
.content-grid,
.archive-grid,
.section-shell {
  width: min(calc(100% - 2rem), var(--ef-max));
  margin-inline: auto;
}

.branding a {
  color: var(--ef-text);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.site-shell { padding-bottom: 4rem; }
.site-main { padding: 1rem 0 3rem; }

.hero-card,
.card,
.content-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ef-border);
  border-radius: var(--ef-radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.card-link .card-link__target:hover,
.card-link .card-link__target:focus {
  background: rgba(255,255,255,0.02);
}

.site-hero {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0 1rem;
}

.hero-with-media {
  grid-template-areas: 'card media';
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
}

.hero-with-media .hero-card {
  grid-area: card;
  align-self: start;
}

.hero-with-media .hero-media {
  grid-area: media;
}

.hero-media {
  border-radius: var(--ef-radius);
  overflow: hidden;
  border: 1px solid var(--ef-border);
  background: rgba(255,255,255,0.03);
  min-height: 320px;
}

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

.hero picture {
  display: block;
  width: 100%;
  height: 100%;
}

.site-hero h1,
.entry-title,
.page-title { line-height: 1.1; margin-top: 0; }

.content-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--ef-gap);
}

.entry-meta,
.site-disclaimer,
.site-tagline,
.muted {
  color: var(--ef-text-soft);
  font-size: 0.95rem;
}

.site-footer__text-button,
.trust-page-inline-button {
  appearance: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0;
  background: transparent;
  color: var(--ef-accent-2);
  cursor: pointer;
  font: inherit;
}

.site-footer__text-button:hover,
.site-footer__text-button:focus-visible,
.trust-page-inline-button:hover,
.trust-page-inline-button:focus-visible {
  color: #fff;
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent {
  position: fixed;
  z-index: 10000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
}

.analytics-consent__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  width: min(100%, 68rem);
  margin-inline: auto;
  padding: 1.25rem;
  border: 1px solid rgba(93, 226, 231, 0.5);
  border-radius: var(--ef-radius);
  background: #171a33;
  box-shadow: 0 1.25rem 4rem rgba(0, 0, 0, 0.55);
}

.analytics-consent__copy h2 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.analytics-consent__copy p {
  margin: 0 0 0.35rem;
  color: var(--ef-text-soft);
}

.analytics-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.analytics-consent__button {
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--ef-accent-2);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.analytics-consent__button--primary {
  background: var(--ef-accent-2);
  color: #101225;
}

.analytics-consent__button--secondary {
  background: transparent;
  color: var(--ef-text);
}

.analytics-consent__button:focus-visible,
.site-footer__text-button:focus-visible,
.trust-page-inline-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .analytics-consent__inner {
    grid-template-columns: 1fr;
  }

  .analytics-consent__actions,
  .analytics-consent__button {
    width: 100%;
  }
}

.button-link {
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ef-accent);
  color: #fff;
  font-weight: 700;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

@media (max-width: 900px) {
  .hero-with-media {
    grid-template-areas:
      'card'
      'media';
    grid-template-columns: 1fr;
  }
}

.front-hero--cinematic {
  position: relative;
  gap: 2rem;
  padding-top: 2.75rem;
}

.front-hero--cinematic::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 58%;
  height: 85%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 79, 163, 0.28), transparent 58%),
              radial-gradient(circle at 62% 18%, rgba(93, 226, 231, 0.22), transparent 48%);
  filter: blur(18px);
  pointer-events: none;
}

.front-hero--cinematic .hero-card {
  position: relative;
  z-index: 1;
  padding: 2.35rem;
  background: linear-gradient(180deg, rgba(22, 24, 51, 0.94), rgba(16, 18, 39, 0.88));
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}

.front-hero--cinematic .hero-card h1 {
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.front-hero--cinematic .hero-card p:not(.muted) {
  font-size: 1.05rem;
  max-width: 56ch;
}

.front-hero--cinematic .hero-media {
  position: relative;
  min-height: 520px;
  box-shadow: 0 26px 70px rgba(0,0,0,0.32);
}

.front-hero--cinematic .hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,79,163,0.16), transparent 32%, rgba(93,226,231,0.1) 72%, rgba(15,16,33,0.38));
  pointer-events: none;
}

.home-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
}

.home-cta-bar p {
  margin: 0;
}

.home-top-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 1.25rem;
}

.home-top-showcase__intro {
  padding: 1rem 0 0;
}

.home-top-showcase__intro h2 {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.home-top-showcase__signup {
  background: linear-gradient(180deg, rgba(93,226,231,0.12), rgba(255,79,163,0.08));
}

.album-grid-shell--homepage {
  margin-top: 1.5rem;
}

.album-grid-shell--homepage-top {
  margin-top: 1rem;
}

.album-grid-shell--homepage-top .album-grid-cards {
  counter-reset: homepage-album;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.album-grid-shell--homepage-top .album-grid-card__body h3 {
  font-size: 1.06rem;
  line-height: 1.15;
}

.album-grid-shell--homepage-top .album-grid-card {
  position: relative;
  min-height: 100%;
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.055);
}

.album-grid-shell--homepage-top .album-grid-card:first-child {
  border-color: rgba(255,79,163,0.42);
  box-shadow: 0 22px 58px rgba(0,0,0,0.28);
}

.album-grid-shell--homepage-top .album-grid-card__media {
  aspect-ratio: 4 / 5;
}

.album-grid-shell--homepage-top .album-grid-card__link::before {
  counter-increment: homepage-album;
  content: 'Start ' counter(homepage-album, decimal-leading-zero);
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(12,14,31,0.78);
  color: var(--ef-text);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.album-grid-shell--homepage-top .album-grid-card__link::after {
  content: 'Explore';
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  padding: 0.36rem 0.58rem;
  border: 1px solid rgba(93,226,231,0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(93,226,231,0.22), rgba(93,226,231,0.1));
  color: #f5f7ff;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

.album-grid-shell--homepage-top .album-grid-card__link {
  position: relative;
  min-height: 100%;
  isolation: isolate;
}

.album-grid-shell--homepage-top .album-grid-card__image {
  filter: saturate(1.08) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
}

.album-grid-shell--homepage-top .album-grid-card:hover .album-grid-card__image,
.album-grid-shell--homepage-top .album-grid-card:focus-within .album-grid-card__image {
  filter: saturate(1.18) contrast(1.08);
  transform: scale(1.055);
}

.album-grid-shell--homepage-top .album-grid-card__body {
  min-height: 6.3rem;
  padding: 1rem 0.9rem 2.35rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.075));
}

.album-grid-shell--featured .album-grid-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.album-grid-shell--featured .album-grid-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.album-grid-shell--featured .album-grid-card:hover,
.album-grid-shell--featured .album-grid-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  border-color: rgba(93,226,231,0.24);
}

.album-grid-shell--featured .album-grid-card__body {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.05));
}

.home-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.home-editorial-feature .card-link__target,
.home-spotlight-card .card-link__target,
.home-jump-panel .card-link__target,
.home-rhythm-card .card-link__target {
  height: 100%;
}

.home-card-kicker {
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.76rem;
  font-weight: 800;
}

.home-card-copy {
  position: relative;
  z-index: 1;
}

.home-card-copy,
.home-jump-panel__copy {
  display: flex;
  flex-direction: column;
}

.home-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.35rem;
  margin-top: 0.9rem;
  padding: 0.58rem 0.92rem;
  border: 1px solid rgba(93,226,231,0.48);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(93,226,231,0.24), rgba(93,226,231,0.1));
  color: #f5f7ff;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 9px 22px rgba(0,0,0,0.22);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-editorial-feature .home-card-button,
.home-spotlight-card--accent .home-card-button {
  border-color: rgba(255,79,163,0.55);
  background: linear-gradient(135deg, rgba(255,79,163,0.34), rgba(255,79,163,0.16));
  color: var(--ef-text);
}

.home-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
}

.home-card-media::after,
.home-jump-panel__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(12,14,31,0.72));
  pointer-events: none;
}

.home-card-media--wide {
  aspect-ratio: 16 / 9;
  margin-bottom: 1.15rem;
}

.home-card-media--thumb {
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
}

.home-card-media__image,
.home-jump-panel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
}

.home-editorial-feature {
  min-height: 100%;
  background: linear-gradient(160deg, rgba(255,79,163,0.16), rgba(93,226,231,0.06) 58%, rgba(255,255,255,0.03));
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}

.home-editorial-feature h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.05;
}

.home-inline-button {
  margin-top: 0.75rem;
}

.home-editorial-feature .card-link__target:hover .home-card-media__image,
.home-editorial-feature .card-link__target:focus .home-card-media__image,
.home-spotlight-card .card-link__target:hover .home-card-media__image,
.home-spotlight-card .card-link__target:focus .home-card-media__image,
.home-jump-panel .card-link__target:hover .home-jump-panel__image,
.home-jump-panel .card-link__target:focus .home-jump-panel__image {
  filter: saturate(1.18) contrast(1.08);
  transform: scale(1.045);
}

.home-editorial-feature .card-link__target:hover .home-card-button,
.home-editorial-feature .card-link__target:focus .home-card-button,
.home-spotlight-card .card-link__target:hover .home-card-button,
.home-spotlight-card .card-link__target:focus .home-card-button,
.home-jump-panel .card-link__target:hover .home-card-button,
.home-jump-panel .card-link__target:focus .home-card-button,
.home-rhythm-card .card-link__target:hover .home-card-button,
.home-rhythm-card .card-link__target:focus .home-card-button {
  border-color: rgba(93,226,231,0.58);
  background: linear-gradient(135deg, rgba(93,226,231,0.34), rgba(93,226,231,0.16));
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

.home-side-stack {
  display: grid;
  gap: 1.5rem;
}

.home-spotlight-card {
  min-height: 220px;
}

.home-spotlight-card .card-link__target {
  display: flex;
  flex-direction: column;
}

.home-spotlight-card .home-card-button,
.home-jump-panel .home-card-button,
.home-rhythm-card .home-card-button {
  margin-top: auto;
}

.home-spotlight-card--accent {
  background: linear-gradient(180deg, rgba(93,226,231,0.12), rgba(255,79,163,0.08));
}

.home-jump-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.home-jump-panel {
  overflow: hidden;
  position: relative;
}

.home-jump-panel .card-link__target {
  display: grid;
  gap: 1rem;
  padding: 0;
}

.home-jump-panel__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.home-jump-panel__copy {
  padding: 1.25rem;
}

.home-jump-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
}

.home-jump-panel--andy::before {
  background: linear-gradient(145deg, rgba(255,79,163,0.18), transparent 60%);
}

.home-jump-panel--erasure::before {
  background: linear-gradient(145deg, rgba(93,226,231,0.14), transparent 60%);
}

.home-jump-panel--vince::before {
  background: linear-gradient(145deg, rgba(132,127,255,0.18), transparent 60%);
}

.home-rhythm-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.home-rhythm-card--wide {
  grid-row: span 2;
  min-height: 100%;
  background: linear-gradient(150deg, rgba(255,79,163,0.18), rgba(93,226,231,0.08) 56%, rgba(255,255,255,0.04));
}

.home-rhythm-card--wide .card-link__target {
  min-height: 360px;
}

.home-rhythm-card h2 {
  margin: 0.2rem 0 0.55rem;
  line-height: 1.08;
}

.home-rhythm-card--wide h2 {
  font-size: 2.6rem;
}

.home-rhythm-card--song {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,79,163,0.09));
}

.home-rhythm-card--discography {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(93,226,231,0.09));
}

.home-rhythm-card--guides {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(132,127,255,0.1));
}

.home-rhythm-card .card-link__target {
  display: flex;
  flex-direction: column;
}

.home-rhythm-card,
.home-jump-panel,
.home-spotlight-card,
.home-editorial-feature,
.album-grid-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-rhythm-card:hover,
.home-rhythm-card:focus-within,
.home-jump-panel:hover,
.home-jump-panel:focus-within,
.home-spotlight-card:hover,
.home-spotlight-card:focus-within,
.home-editorial-feature:hover,
.home-editorial-feature:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.24);
  border-color: rgba(255,255,255,0.18);
}

@media (max-width: 1080px) {
  .home-top-showcase,
  .album-grid-shell--featured .album-grid-cards {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .home-top-showcase {
    grid-template-columns: 1fr;
  }

  .home-feature-layout,
  .home-rhythm-grid,
  .home-jump-panels {
    grid-template-columns: 1fr;
  }

  .home-rhythm-card--wide {
    grid-row: auto;
  }

  .home-rhythm-card--wide .card-link__target {
    min-height: 260px;
  }

  .home-rhythm-card--wide h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 720px) {
  .home-cta-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .front-hero--cinematic .hero-card {
    padding: 1.5rem;
  }

  .front-hero--cinematic .hero-media {
    min-height: 320px;
  }

  .album-grid-shell--homepage-top .album-grid-cards {
    grid-template-columns: 1fr;
  }

  .album-grid-shell--homepage-top .album-grid-card__media,
  .home-card-media--wide,
  .home-card-media--thumb,
  .home-jump-panel__media {
    aspect-ratio: 16 / 11;
  }

  .home-editorial-feature .card-link__target::after,
  .home-spotlight-card .card-link__target::after,
  .home-rhythm-card .card-link__target::after {
    margin-top: 0.7rem;
  }
}

@media (max-width: 768px) {
  .front-hero--cinematic {
    grid-template-areas:
      'media'
      'card';
    gap: 1rem;
    padding-top: 0.75rem;
  }

  .front-hero--cinematic::before,
  .front-hero--cinematic .hero-media::after {
    display: none;
  }

  .front-hero--cinematic .hero-media {
    min-height: 0;
    height: clamp(360px, 50svh, 460px);
  }

  @supports (height: 100dvh) {
    .front-hero--cinematic .hero-media {
      height: clamp(360px, 50dvh, 460px);
    }
  }

  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 38%;
  }
}

.content-media {
  margin: 0 0 1.5rem;
}

.content-media__figure {
  margin: 0;
}

.content-media__image {
  width: min(100%, 420px);
  height: auto;
  display: block;
  border-radius: var(--ef-radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.content-media__caption {
  margin-top: 0.65rem;
}


.site-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: 320px;
}

.site-logo-image {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

.content-media {
  margin: 0 0 1.5rem;
}

.content-media__figure {
  margin: 0;
}

.content-media__image {
  width: min(100%, 420px);
  height: auto;
  display: block;
  border-radius: var(--ef-radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.content-media__caption {
  margin-top: 0.65rem;
}


.site-logo-text {
  display: inline-block;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}


.site-logo-link--background {
  display: block;
  width: min(100%, 420px);
  height: 96px;
  background-image: url("../erasurefan-logo-header-small.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.branding--logo-image {
  min-width: 0;
}

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


.card-media {
  margin-bottom: 1rem;
}

.card-media__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
}


.timeline-shell {
  display: grid;
  gap: 1.5rem;
}

.timeline-era {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.timeline-era__marker {
  color: var(--ef-accent-2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding-top: 0.35rem;
}

.timeline-era__content {
  position: relative;
  padding-left: 1.5rem;
}

.timeline-era__content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  background: linear-gradient(180deg, var(--ef-accent), var(--ef-accent-2));
}

.timeline-entry {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ef-border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-top: 1rem;
}

.timeline-entry h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.timeline-entry ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

@media (max-width: 800px) {
  .timeline-era {
    grid-template-columns: 1fr;
  }

  .timeline-era__content {
    padding-left: 1rem;
  }
}

.album-grid-shell {
  margin: 2rem auto 0;
  max-width: var(--ef-max);
  padding: 0 1rem;
}

.album-grid-shell__intro {
  margin-bottom: 1rem;
}

.album-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.album-grid-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
}

.album-grid-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.album-grid-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.album-grid-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.album-grid-card__body {
  padding: 0.9rem 1rem 1rem;
}

.album-grid-card__body h3 {
  margin: 0;
  font-size: 1rem;
}

.album-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1.25rem 2rem;
  align-items: center;
  margin-top: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(125,85,255,0.2), rgba(32,28,78,0.92) 58%, rgba(255,79,163,0.12));
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
}

.album-cta-intro h2 {
  margin: 0.25rem 0 0.55rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.album-cta-intro p:last-child {
  max-width: 42rem;
  margin: 0;
  color: var(--ef-text-soft);
}

.album-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
}

.album-cta-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  box-shadow: 0 10px 24px rgba(255,79,163,0.2);
}

.album-cta-note {
  margin: 0;
  color: var(--ef-text-soft);
  font-size: 0.78rem;
  text-align: right;
}

.album-cta {
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.album-cta--primary {
  background: rgba(125, 85, 255, 0.16);
}

.album-cta--secondary {
  background: rgba(255,255,255,0.04);
}

.button {
  display: inline-block;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--ef-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.button--secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.24);
}

.erasure-overview-hero {
  position: relative;
  gap: 1.25rem;
  padding-top: 2.35rem;
}

.erasure-overview-hero::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 62%;
  height: 90%;
  background: radial-gradient(circle at 18% 20%, rgba(255, 79, 163, 0.18), transparent 58%),
              radial-gradient(circle at 70% 25%, rgba(93, 226, 231, 0.16), transparent 52%);
  filter: blur(24px);
  pointer-events: none;
}

.erasure-overview-hero .hero-card,
.erasure-overview-hero .hero-media {
  position: relative;
  z-index: 1;
}

.erasure-overview-hero .hero-card {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(23, 25, 54, 0.96), rgba(14, 16, 35, 0.92));
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

.erasure-overview-hero .hero-card h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
}

.erasure-overview-hero .hero-card p:not(.muted) {
  font-size: 1.03rem;
  max-width: 40ch;
}

.erasure-overview-hero .hero-media {
  min-height: 440px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.34);
}

.erasure-overview-hero .hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,12,25,0.08), rgba(11,12,25,0.22));
  pointer-events: none;
}

@media (max-width: 768px) {
  .erasure-overview-hero {
    gap: 1rem;
    padding-top: 0.75rem;
  }

  .erasure-overview-hero .hero-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .erasure-overview-hero .hero-image {
    object-fit: cover;
    object-position: center center;
  }
}

.erasure-overview-intro-grid,
.erasure-overview-feature-grid,
.erasure-overview-duo-grid,
.erasure-overview-next-grid {
  width: min(calc(100% - 2rem), var(--ef-max));
  margin: 1.5rem auto 0;
}

.erasure-overview-intro-grid,
.erasure-overview-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1rem;
}

.erasure-overview-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.erasure-overview-intro-card h2,
.erasure-overview-feature-card h2,
.erasure-overview-next-intro h2,
.erasure-overview-duo-intro h2 {
  margin-top: 0;
  line-height: 1.15;
}

.erasure-overview-jump-card {
  align-self: stretch;
}

.erasure-overview-jump-list,
.erasure-overview-path-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.erasure-overview-jump-list li,
.erasure-overview-path-list li {
  margin-top: 0.7rem;
}

.erasure-overview-feature-card--catalog .erasure-overview-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.erasure-overview-feature-card--catalog .erasure-overview-mini-grid div {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.erasure-overview-feature-card--catalog h3,
.erasure-overview-duo-card h3,
.erasure-overview-next-card h3 {
  margin-top: 0;
}

.erasure-overview-duo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.erasure-overview-duo-card--andy {
  background: linear-gradient(180deg, rgba(255, 79, 163, 0.12), rgba(255,255,255,0.04));
}

.erasure-overview-duo-card--vince {
  background: linear-gradient(180deg, rgba(93, 226, 231, 0.12), rgba(255,255,255,0.04));
}

.erasure-overview-next-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.erasure-overview-next-intro {
  grid-column: span 1;
  align-self: center;
}

.erasure-overview-next-card {
  min-height: 100%;
}

@media (max-width: 980px) {
  .erasure-overview-intro-grid,
  .erasure-overview-feature-grid,
  .erasure-overview-duo-grid,
  .erasure-overview-next-grid {
    grid-template-columns: 1fr;
  }

  .erasure-overview-feature-card--catalog .erasure-overview-mini-grid {
    grid-template-columns: 1fr;
  }
}

.trust-page-shell {
  display: grid;
  gap: 1.25rem;
  padding-top: 2rem;
}

.trust-page-hero,
.trust-page-content {
  background: linear-gradient(180deg, rgba(22,24,51,0.96), rgba(14,16,35,0.9));
  box-shadow: 0 22px 60px rgba(0,0,0,0.22);
}

.trust-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.trust-page-hero__inner {
  max-width: 60rem;
}

.trust-page-kicker {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.trust-page-hero .page-title {
  margin-bottom: 0.9rem;
  font-size: clamp(2.3rem, 4.8vw, 3.5rem);
  letter-spacing: -0.04em;
}

.trust-page-lead {
  margin: 0;
  max-width: 52ch;
  color: var(--ef-text-soft);
  font-size: 1.02rem;
}

.trust-page-content {
  padding: clamp(1.35rem, 2.7vw, 2rem);
}

.trust-page-prose {
  max-width: 70ch;
}

.trust-page-prose > *:first-child {
  margin-top: 0;
}

.trust-page-prose > *:last-child {
  margin-bottom: 0;
}

.trust-page-prose h2,
.trust-page-prose h3,
.trust-page-prose h4 {
  color: var(--ef-text);
  line-height: 1.2;
}

.trust-page-prose h2 {
  margin: 2.25rem 0 0.85rem;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
}

.trust-page-prose h3 {
  margin: 1.7rem 0 0.7rem;
  font-size: 1.18rem;
}

.trust-page-prose p,
.trust-page-prose ul,
.trust-page-prose ol {
  margin: 0 0 1rem;
  color: var(--ef-text-soft);
}

.trust-page-prose ul,
.trust-page-prose ol {
  padding-left: 1.3rem;
}

.trust-page-prose li + li {
  margin-top: 0.45rem;
}

.trust-page-prose strong {
  color: var(--ef-text);
}

.trust-page-prose a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

@media (max-width: 640px) {
  .trust-page-shell {
    padding-top: 1rem;
    gap: 1rem;
  }

  .trust-page-hero,
  .trust-page-content {
    padding: 1.25rem;
  }

}

.updates-page-shell {
  padding-top: 2rem;
}

.updates-page-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.updates-page-grid--editorial {
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 1rem;
}

.updates-page-grid--editorial .updates-signup-card {
  position: sticky;
  top: 1rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.updates-page-proof h2 {
  margin: 0 0 0.55rem;
}

.updates-signup-card__status {
  padding-top: 0.8rem;
  border-top: 1px solid var(--ef-border);
}

.updates-signup-card__status span {
  color: #6be6bd;
}

.updates-page-copy {
  display: grid;
  gap: 1rem;
}

.updates-page-media {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.32);
}

.updates-page-figure {
  margin: 0;
  height: 100%;
}

.updates-page-image {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.updates-page-intro,
.updates-page-benefits,
.updates-signup-card {
  background: linear-gradient(180deg, rgba(22,24,51,0.96), rgba(14,16,35,0.9));
  box-shadow: 0 22px 60px rgba(0,0,0,0.22);
}

.updates-page-kicker {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.updates-page-intro .page-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
}

.updates-page-lead {
  margin: 0;
  color: var(--ef-text);
  font-size: 1.05rem;
  max-width: 44ch;
}

.updates-page-benefits h2,
.updates-signup-card h2 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.updates-benefits-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.updates-benefits-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ef-text-soft);
}

.updates-benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ef-accent), var(--ef-accent-2));
  box-shadow: 0 0 18px rgba(255,79,163,0.4);
}

.updates-signup-card {
  padding: 1.65rem;
  border-color: rgba(93,226,231,0.18);
}

.updates-signup-card__header p,
.updates-signup-card__footer p {
  margin: 0;
}

.updates-signup-card__header {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.updates-signup-card__form .wpforms-container,
.updates-signup-card__form .wpforms-form {
  margin: 0;
}

.updates-signup-card__form .wpforms-field-container {
  display: grid;
  gap: 0.95rem;
}

.updates-signup-card__form .wpforms-field {
  margin: 0;
  padding: 0;
}

.updates-signup-card__form .wpforms-field-label,
.updates-signup-card__form .wpforms-form label {
  margin-bottom: 0.45rem;
  color: #f5f7ff !important;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.updates-signup-card__form .wpforms-required-label {
  color: #ff8ec2 !important;
  font-weight: 800;
}

.updates-signup-card__form input[type="text"],
.updates-signup-card__form input[type="email"],
.updates-signup-card__form .wpforms-form input[type="text"],
.updates-signup-card__form .wpforms-form input[type="email"] {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #ffffff;
  color: #111111;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  -webkit-text-fill-color: #111111;
}

.updates-signup-card__form input[type="text"]::placeholder,
.updates-signup-card__form input[type="email"]::placeholder,
.updates-signup-card__form .wpforms-form input::placeholder,
.updates-signup-card__form .wpforms-field input::placeholder {
  color: #666666 !important;
  opacity: 1;
}

.updates-signup-card__form input[type="text"]:focus,
.updates-signup-card__form input[type="email"]:focus,
.updates-signup-card__form .wpforms-form input:focus,
.updates-signup-card__form .wpforms-field input:focus,
.updates-signup-card__form input[type="text"]:focus-visible,
.updates-signup-card__form input[type="email"]:focus-visible,
.updates-signup-card__form .wpforms-form input:focus-visible,
.updates-signup-card__form .wpforms-field input:focus-visible {
  outline: none !important;
  border-color: #e94ea3 !important;
  box-shadow: 0 0 0 2px rgba(233,78,163,0.2) !important;
}

.updates-signup-card__form .wpforms-error-noscript,
.updates-signup-card__form #wpforms-error-noscript {
  display: none !important;
}

.updates-signup-card__form .wpforms-submit-container {
  padding-top: 1rem;
}

.updates-signup-card__form .wpforms-submit {
  min-width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ef-accent), #ff7ab8 52%, var(--ef-accent-2));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 36px rgba(255,79,163,0.24);
}

.updates-signup-card__form .wpforms-submit:hover,
.updates-signup-card__form .wpforms-submit:focus {
  filter: brightness(1.04);
}

.updates-signup-card__footer {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .updates-page-grid {
    grid-template-columns: 1fr;
  }

  .updates-page-grid--editorial .updates-signup-card {
    position: static;
  }

  .updates-page-media {
    order: -1;
  }

  .updates-page-image {
    min-height: 320px;
    max-height: 440px;
  }
}

@media (max-width: 640px) {
  .updates-page-shell {
    padding-top: 1rem;
  }

  .updates-signup-card,
  .updates-page-intro,
  .updates-page-benefits {
    padding: 1.25rem;
  }

  .updates-signup-card__form .wpforms-submit {
    min-width: 100%;
  }
}
.guides-hub-hero {
  position: relative;
  gap: 2rem;
  padding-top: 2.75rem;
  align-items: stretch;
}

.guides-hub-hero::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 60%;
  height: 90%;
  background: radial-gradient(circle at 18% 20%, rgba(255, 79, 163, 0.22), transparent 56%),
              radial-gradient(circle at 70% 15%, rgba(93, 226, 231, 0.16), transparent 44%);
  filter: blur(22px);
  pointer-events: none;
}

.guides-hub-hero__card,
.guides-hub-hero__media {
  position: relative;
  z-index: 1;
}

.guides-hub-hero__card {
  padding: clamp(2rem, 3vw, 2.8rem);
  background: linear-gradient(180deg, rgba(22, 24, 51, 0.96), rgba(14, 16, 36, 0.9));
  box-shadow: 0 22px 60px rgba(0,0,0,0.32);
}

.guides-hub-hero__eyebrow,
.guides-hub-kicker {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--ef-accent-2);
}

.guides-hub-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.guides-hub-hero__copy {
  font-size: 1.05rem;
  max-width: 33rem;
  color: var(--ef-text-soft);
}

.guides-hub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.guides-hub-hero__media {
  min-height: 520px;
  box-shadow: 0 26px 70px rgba(0,0,0,0.32);
}

.guides-hub-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,79,163,0.12), transparent 30%, rgba(93,226,231,0.08) 70%, rgba(15,16,33,0.42));
  pointer-events: none;
}

.guides-hub-intro,
.guides-hub-featured,
.guides-hub-guides,
.guides-hub-next,
.guides-hub-signup {
  margin-top: 2.6rem;
}

.guides-hub-intro__panel,
.guides-hub-signup__panel {
  padding: clamp(1.4rem, 2.5vw, 2rem);
}

.guides-hub-intro__grid,
.guides-hub-signup__panel,
.guides-hub-featured-card__target {
  display: grid;
  gap: 1.5rem;
}

.guides-hub-intro__grid,
.guides-hub-signup__panel,
.guides-hub-featured-card__target {
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.9fr);
}

.guides-hub-intro__points {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ef-text-soft);
}

.guides-hub-intro__points li + li {
  margin-top: 0.75rem;
}

.guides-hub-section-heading {
  margin-bottom: 1rem;
}

.guides-hub-section-heading h2,
.guides-hub-featured-card h3,
.guides-hub-card h3,
.guides-hub-signup h2 {
  margin: 0;
  line-height: 1.15;
}

.guides-hub-section-heading p:last-child {
  max-width: 44rem;
}

.guides-hub-featured-card {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.guides-hub-featured-card__target {
  align-items: center;
  min-height: 100%;
}

.guides-hub-arrow {
  justify-self: end;
  align-self: center;
  font-size: 2rem;
  color: var(--ef-accent-2);
}

.guides-hub-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.guides-hub-card {
  padding: 0;
  min-height: 100%;
}

.guides-hub-card__target {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.guides-hub-card__target p {
  margin: 0;
  color: var(--ef-text-soft);
}

.guides-hub-card__cta {
  margin-top: auto;
  color: var(--ef-accent-2);
  font-weight: 700;
}

.guides-hub-card-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guides-hub-card--compact .guides-hub-card__target {
  gap: 0.75rem;
}

.guides-hub-signup__panel {
  align-items: center;
}

.guides-hub-signup__panel p {
  max-width: 38rem;
}

@media (max-width: 1100px) {
  .guides-hub-card-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .guides-hub-intro__grid,
  .guides-hub-signup__panel,
  .guides-hub-featured-card__target,
  .guides-hub-card-grid {
    grid-template-columns: 1fr;
  }

  .guides-hub-card-grid--compact {
    grid-template-columns: 1fr 1fr;
  }

  .guides-hub-arrow {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .guides-hub-hero__media {
    min-height: 340px;
  }

  .guides-hub-card-grid,
  .guides-hub-card-grid--compact {
    grid-template-columns: 1fr;
  }

  .guides-hub-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Audit remediation: controls, reference data, trust surfaces, and contrast. */

.site-menu-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--ef-border);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: var(--ef-text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-menu-toggle__icon,
.site-menu-toggle__icon::before,
.site-menu-toggle__icon::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.site-menu-toggle__icon {
  position: relative;
}

.site-menu-toggle__icon::before,
.site-menu-toggle__icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.site-menu-toggle__icon::before { top: -0.38rem; }
.site-menu-toggle__icon::after { top: 0.38rem; }

.button,
.button-link,
.updates-signup-card__form .wpforms-submit {
  min-height: 44px;
  border: 0;
  color: #0b0c19;
  cursor: pointer;
}

.button--secondary {
  border: 1px solid rgba(255,255,255,0.32);
  color: var(--ef-text);
}

.button:focus-visible,
.button-link:focus-visible,
.updates-signup-card__form .wpforms-submit:focus-visible,
.site-menu-toggle:focus-visible,
.site-search input:focus-visible,
.site-search button:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.discography-filters input:focus-visible,
.discography-filters select:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  overflow: visible;
  background: #ffffff;
  color: #111111;
  z-index: 100000;
}

.release-reference {
  margin: 2rem 0;
  padding: clamp(1.15rem, 3vw, 1.75rem);
  border: 1px solid rgba(93,226,231,0.24);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(93,226,231,0.1), rgba(255,255,255,0.035) 48%, rgba(255,79,163,0.08));
}

.release-reference__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.release-reference__header h2 {
  margin: 0;
}

.release-reference__kicker {
  margin: 0 0 0.35rem;
  color: var(--ef-accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-reference__verified {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: var(--ef-text-soft);
  font-size: 0.82rem;
}

.release-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.release-fact {
  padding: 0.85rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(10,12,27,0.3);
}

.release-fact dt {
  color: var(--ef-text-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-fact dd {
  margin: 0.25rem 0 0;
  font-weight: 700;
}

.release-reference__details {
  margin-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 0.8rem;
}

.release-reference__details summary {
  min-height: 44px;
  padding: 0.55rem 0;
  color: var(--ef-text);
  font-weight: 800;
  cursor: pointer;
}

.release-reference__details summary span,
.release-reference__edition {
  color: var(--ef-text-soft);
  font-weight: 400;
}

.release-reference__details h3,
.release-sources h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.release-track-list {
  columns: 2 18rem;
  column-gap: 2.5rem;
  margin: 1rem 0;
  padding-left: 1.4rem;
}

.release-track-list li {
  break-inside: avoid;
  padding: 0.15rem 0 0.35rem;
}

.release-sources {
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.release-sources ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin: 0.45rem 0;
  padding-left: 1.2rem;
}

.album-editorial {
  margin-top: 2rem;
}

.album-cta-disclosure {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-left: 4px solid var(--ef-accent-2);
  background: rgba(93,226,231,0.08);
  color: var(--ef-text-soft);
  font-size: 0.82rem;
}

.discography-browser {
  padding-top: 2rem;
}

.discography-browser__intro {
  max-width: 58rem;
}

.discography-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(2, minmax(170px, 0.75fr)) auto auto;
  gap: 0.8rem;
  align-items: end;
  margin: 1.5rem 0 0.75rem;
  padding: 1rem;
  border: 1px solid var(--ef-border);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}

.discography-filter-field {
  display: grid;
  gap: 0.35rem;
}

.discography-filter-field label,
.contact-form__field label {
  font-size: 0.88rem;
  font-weight: 800;
}

.discography-filter-field input,
.discography-filter-field select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  background: #ffffff;
  color: #111329;
  font: inherit;
}

.contact-form textarea {
  min-height: 11rem;
  resize: vertical;
}

.discography-reset {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.6rem;
}

.discography-result-count {
  margin: 0 0 1rem;
  color: var(--ef-text-soft);
}

.discography-release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 280px));
  gap: 1rem;
  align-items: start;
}

.discography-release-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--ef-border);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}

.discography-release-card__link {
  display: block;
  height: 100%;
  color: inherit;
}

.discography-release-card__link:hover,
.discography-release-card__link:focus-visible {
  text-decoration: none;
  background: rgba(255,255,255,0.04);
}

.discography-release-card__link:focus-visible {
  outline: 3px solid var(--ef-accent-2);
  outline-offset: -3px;
}

.discography-release-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.discography-release-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discography-release-card__body {
  padding: 0.9rem 1rem 1rem;
}

.discography-release-card__body h3 {
  margin: 0.4rem 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.discography-release-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
}

.discography-release-card__meta span {
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(93,226,231,0.1);
  color: var(--ef-accent-2);
  font-size: 0.74rem;
  font-weight: 800;
}

.discography-release-card__source {
  margin: 0;
  color: var(--ef-text-soft);
  font-size: 0.78rem;
}

.contact-form-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 5vw, 3.5rem);
  margin-top: 1.5rem;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form__field {
  display: grid;
  gap: 0.35rem;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__privacy {
  margin: 0;
}

.form-notice {
  grid-column: 1 / -1;
  padding: 0.9rem 1rem;
  border-radius: 12px;
}

.form-notice--success {
  border: 1px solid #6be6bd;
  background: rgba(44,151,115,0.16);
}

.form-notice--error {
  border: 1px solid #ff9abc;
  background: rgba(179,45,91,0.18);
}

.news-archive-intro {
  margin-top: 1rem;
}

.news-card__read-more {
  color: var(--ef-accent-2);
  font-weight: 800;
}

.news-entry {
  max-width: 54rem;
  margin-inline: auto;
}

.news-entry__back {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ef-border);
}

.trust-copy {
  max-width: 54rem;
  margin-inline: auto;
}

@media (max-width: 1050px) {
  .discography-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .discography-filter-field--search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .has-js .site-menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    align-items: stretch;
  }

  .has-js .site-nav {
    display: none;
  }

  .has-js .site-nav.is-open {
    display: grid;
  }

  .site-nav ul,
  .site-nav-tools {
    display: grid;
    width: 100%;
    gap: 0.2rem;
  }

  .site-nav li,
  .site-nav a,
  .site-nav-tools > a {
    width: 100%;
  }

  .site-search input {
    width: 100%;
  }

  .contact-form-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .release-reference__header,
  .contact-form__grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .release-reference__verified {
    justify-self: start;
  }

  .release-track-list {
    columns: 1;
  }

  .discography-filters {
    grid-template-columns: 1fr;
  }

  .discography-filter-field--search {
    grid-column: auto;
  }

  .discography-release-grid {
    grid-template-columns: 1fr;
  }
}

/* Editorial publication refresh: compact homepage, reading room, album pages. */
.button-link--ghost {
  border: 1px solid rgba(255,255,255,0.34);
  background: transparent;
  color: var(--ef-text);
}

.front-hero--editorial {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.15fr);
  gap: 1.25rem;
  padding-top: 1.2rem;
}

.front-hero--editorial .hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 3vw, 2.5rem);
}

.front-hero--editorial .hero-card h1 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 5vw, 4.35rem);
}

.front-hero--editorial .hero-media {
  min-height: 430px;
  max-height: 520px;
}

.front-hero__date,
.home-card-kicker {
  margin: 0 0 0.55rem;
  color: var(--ef-accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.front-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.home-news-desk,
.home-starter-intro,
.home-editorial-desk,
.home-reference-strip,
.home-subscribe-note {
  margin-top: clamp(2.6rem, 6vw, 5rem);
}

.home-section-heading {
  margin-bottom: 1.15rem;
}

.home-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 2rem;
  align-items: end;
}

.home-section-heading h2 {
  max-width: 20ch;
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.home-section-heading > p,
.home-section-heading > a,
.home-section-heading > div + p,
.home-section-heading > div + a {
  justify-self: end;
  max-width: 34rem;
}

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

.home-news-card h3,
.home-editorial-card h3 {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.12;
}

.home-news-card--lead {
  background: linear-gradient(145deg, rgba(255,79,163,0.13), rgba(93,226,231,0.06));
}

.home-news-card--lead h3 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.home-starter-intro + .album-grid-shell--homepage {
  margin-top: 0;
}

.home-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-editorial-card {
  position: relative;
  min-height: 22rem;
}

.home-editorial-card .card-link__target {
  display: flex;
  flex-direction: column;
}

.home-editorial-card__number {
  margin-bottom: auto;
  color: rgba(255,255,255,0.16);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.home-editorial-card .home-card-button {
  margin-top: auto;
  padding-top: 1.2rem;
}

.home-reference-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ef-border);
  border-bottom: 1px solid var(--ef-border);
}

.home-reference-strip article {
  padding: 1.6rem;
}

.home-reference-strip article + article {
  border-left: 1px solid var(--ef-border);
}

.home-reference-strip h2 {
  margin: 0.2rem 0 0.65rem;
  font-size: 1.4rem;
  line-height: 1.15;
}

.home-subscribe-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(93,226,231,0.28);
  border-radius: var(--ef-radius);
  background: linear-gradient(135deg, rgba(93,226,231,0.1), rgba(255,79,163,0.08));
}

.home-subscribe-note h2 {
  max-width: 28ch;
  margin: 0;
  line-height: 1.1;
}

.guides-hub-hero--editorial {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1rem;
  align-items: stretch;
  padding-top: 1.2rem;
}

.guides-hub-hero--editorial .guides-hub-hero__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guides-hub-hero--editorial h1 {
  max-width: 9ch;
}

.guides-hub-edition {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 30rem;
  padding: 2rem;
  border: 1px solid var(--ef-border);
  border-radius: var(--ef-radius);
  background: linear-gradient(160deg, rgba(255,79,163,0.18), rgba(17,19,42,0.96) 54%, rgba(93,226,231,0.12));
}

.guides-hub-edition__mark {
  margin-bottom: auto;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.guides-hub-edition p {
  margin: 0;
  color: var(--ef-accent-2);
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.guides-hub-edition strong {
  margin: 0.35rem 0;
  font-size: 1.8rem;
}

.guides-hub-edition span:last-child {
  color: var(--ef-text-soft);
}

.guides-hub-featured-card__target {
  grid-template-columns: 150px minmax(0, 1fr);
}

.guides-hub-featured-card__number {
  color: rgba(255,255,255,0.14);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
}

.guides-hub-section-heading--index {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.65fr);
  gap: 2rem;
  align-items: end;
}

.guides-hub-card-grid--editorial {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guides-hub-card__topline,
.guides-hub-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ef-text-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guides-hub-card__topline {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ef-border);
}

.guides-hub-card__footer {
  margin-top: auto;
}

.guides-hub-next__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.editorial-guide__header {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(230px, 0.6fr);
  gap: 1rem;
  padding-top: 1.2rem;
}

.editorial-guide__masthead,
.editorial-guide__issue {
  min-height: 27rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid var(--ef-border);
  border-radius: var(--ef-radius);
}

.editorial-guide__masthead {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, rgba(255,79,163,0.12), rgba(20,22,48,0.96) 58%, rgba(93,226,231,0.08));
}

.editorial-guide__kicker {
  margin-bottom: auto;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-guide__masthead h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.editorial-guide__deck {
  max-width: 54rem;
  margin: 1.2rem 0;
  color: var(--ef-text-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.editorial-guide__byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ef-border);
  color: var(--ef-text-soft);
  font-size: 0.86rem;
}

.editorial-guide__issue {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--ef-accent), #9c3b8e 60%, #382a70);
}

.editorial-guide__issue > span {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.editorial-guide__issue strong {
  margin: auto 0 1rem;
  font-size: 2rem;
  line-height: 0.92;
  letter-spacing: 0.04em;
}

.editorial-guide__issue small {
  font-size: 0.82rem;
  line-height: 1.4;
}

.editorial-guide__layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1.65fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.editorial-guide__rail {
  position: sticky;
  top: 1.5rem;
  padding: 1rem 0;
  border-top: 3px solid var(--ef-accent-2);
  color: var(--ef-text-soft);
  font-size: 0.9rem;
}

.editorial-guide__rail-label {
  color: var(--ef-text);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.editorial-guide__body {
  max-width: 58rem;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.editorial-guide__body > *:first-child {
  margin-top: 0;
}

.editorial-guide__body p,
.editorial-guide__body li {
  color: #d9dcf2;
  font-size: 1.02rem;
}

.editorial-guide__body h2 {
  margin: 2.6rem 0 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ef-border);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.08;
}

.editorial-guide__body h3 {
  margin: 1.8rem 0 0.65rem;
  font-size: 1.3rem;
  line-height: 1.15;
}

.editorial-guide__body blockquote {
  margin: 1.8rem 0;
  padding: 0.3rem 0 0.3rem 1.2rem;
  border-left: 4px solid var(--ef-accent);
  color: var(--ef-text);
  font-size: 1.15rem;
}

.editorial-guide__body .guide-verdict,
.editorial-guide__body .source-note {
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: rgba(93,226,231,0.08);
}

.editorial-guide__body .source-note {
  border-left: 3px solid var(--ef-accent-2);
  font-size: 0.9rem;
}

.editorial-guide__related {
  margin-top: 3rem;
}

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

.album-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
  padding-top: 1.2rem;
}

.album-page__hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 31rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  background: linear-gradient(155deg, rgba(255,79,163,0.13), rgba(18,20,43,0.96) 60%, rgba(93,226,231,0.08));
}

.album-page__hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 0.8rem;
  font-size: clamp(3rem, 6vw, 5.2rem);
  letter-spacing: -0.05em;
}

.album-page__deck {
  color: var(--ef-text-soft);
  font-size: 1.05rem;
}

.album-page__quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1.2rem 0;
}

.album-page__quick-facts div {
  padding: 0.8rem;
  border: 1px solid var(--ef-border);
  border-radius: 10px;
  background: rgba(255,255,255,0.035);
}

.album-page__quick-facts dt {
  color: var(--ef-text-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.album-page__quick-facts dd {
  margin: 0.2rem 0 0;
  font-weight: 800;
}

.album-page__art-note {
  margin: 0;
  color: var(--ef-text-soft);
  font-size: 0.8rem;
}

.album-page__hero-media,
.album-page__hero-media .content-media,
.album-page__hero-media .content-media__figure {
  height: 100%;
  margin: 0;
}

.album-page__hero-media .content-media__figure {
  display: flex;
  flex-direction: column;
}

.album-page__hero-media .content-media__image {
  width: 100%;
  min-height: 0;
  flex: 1;
  object-fit: cover;
  border-radius: var(--ef-radius);
}

.album-page__content {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.album-page__content .album-editorial {
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.album-page__content .album-editorial h2 {
  margin-top: 0;
  line-height: 1.1;
}

.album-page__content .release-reference {
  margin: 0;
}

.updates-archive-hero .hero-card {
  max-width: 58rem;
  padding: clamp(1.6rem, 4vw, 3rem);
}

.song-page__header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1rem;
  align-items: stretch;
  padding-top: 1.2rem;
}

.song-page__masthead {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 28rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  background: linear-gradient(155deg, rgba(93,226,231,0.1), rgba(18,20,43,0.96) 55%, rgba(255,79,163,0.12));
}

.song-page__masthead h1 {
  max-width: 11ch;
  margin-bottom: 0.8rem;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.05em;
}

.song-page__deck {
  max-width: 42rem;
  color: var(--ef-text-soft);
  font-size: 1.08rem;
}

.song-page__media {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ef-border);
  border-radius: var(--ef-radius);
  background: rgba(255,255,255,0.03);
}

.song-page__image {
  min-height: 0;
  flex: 1;
  width: 100%;
  object-fit: cover;
}

.song-page__media figcaption {
  padding: 0.65rem 0.8rem;
  color: var(--ef-text-soft);
  font-size: 0.78rem;
}

.song-page__body {
  max-width: 58rem;
  margin-top: 1rem;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.song-page__body p,
.song-page__body li {
  color: #d9dcf2;
  font-size: 1.02rem;
}

.song-page__body h2 {
  margin: 2.2rem 0 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ef-border);
  line-height: 1.1;
}

.updates-archive-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: -0.045em;
}

.updates-lead-story,
.updates-archive-list {
  margin-top: 1.5rem;
}

.updates-lead-card__target {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1.65fr);
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.updates-lead-card__label {
  color: var(--ef-accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.updates-lead-card h2 {
  max-width: 22ch;
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.03;
}

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

.news-card h3 {
  margin: 0.3rem 0 0.7rem;
  line-height: 1.15;
}

@media (max-width: 980px) {
  .front-hero--editorial,
  .guides-hub-hero--editorial,
  .editorial-guide__header,
  .album-page__hero,
  .album-page__content,
  .song-page__header {
    grid-template-columns: 1fr;
  }

  .front-hero--editorial {
    grid-template-areas: 'card' 'media';
  }

  .home-news-grid,
  .home-editorial-grid,
  .home-reference-strip,
  .news-archive-grid,
  .editorial-guide__related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-news-card--lead,
  .home-reference-strip article:last-child,
  .editorial-guide__related-grid article:last-child {
    grid-column: 1 / -1;
  }

  .home-reference-strip article:nth-child(3) {
    border-top: 1px solid var(--ef-border);
    border-left: 0;
  }

  .guides-hub-edition,
  .editorial-guide__masthead,
  .editorial-guide__issue,
  .album-page__hero-copy,
  .song-page__masthead {
    min-height: 22rem;
  }

  .editorial-guide__layout {
    grid-template-columns: 1fr;
  }

  .editorial-guide__rail {
    position: static;
  }
}

@media (max-width: 700px) {
  .album-cta-shell {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.25rem;
  }

  .album-cta-note {
    text-align: left;
  }

  .front-hero--editorial .hero-card {
    padding: 1.35rem;
  }

  .front-hero--editorial .hero-card h1 {
    max-width: none;
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .front-hero--editorial .hero-media {
    min-height: 0;
    height: 15rem;
  }

  .front-hero__actions,
  .front-hero__actions .button-link {
    width: 100%;
  }

  .home-section-heading--split,
  .guides-hub-section-heading--index,
  .guides-hub-featured-card__target,
  .guides-hub-next__panel,
  .updates-lead-card__target {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-section-heading > p,
  .home-section-heading > a,
  .home-section-heading > div + p,
  .home-section-heading > div + a {
    justify-self: start;
  }

  .home-news-grid,
  .home-editorial-grid,
  .home-reference-strip,
  .news-archive-grid,
  .guides-hub-card-grid--editorial,
  .editorial-guide__related-grid {
    grid-template-columns: 1fr;
  }

  .home-news-card--lead,
  .home-reference-strip article:last-child,
  .editorial-guide__related-grid article:last-child {
    grid-column: auto;
  }

  .home-reference-strip article + article,
  .home-reference-strip article:nth-child(3) {
    border-top: 1px solid var(--ef-border);
    border-left: 0;
  }

  .home-subscribe-note {
    align-items: stretch;
    flex-direction: column;
  }

  .guides-hub-edition {
    min-height: 18rem;
  }

  .editorial-guide__masthead,
  .editorial-guide__issue,
  .album-page__hero-copy,
  .song-page__masthead {
    min-height: 0;
  }

  .editorial-guide__masthead h1,
  .album-page__hero-copy h1,
  .song-page__masthead h1 {
    max-width: none;
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .editorial-guide__issue {
    min-height: 14rem;
  }

  .editorial-guide__layout {
    margin-top: 1rem;
  }

  .editorial-guide__body {
    padding: 1.25rem;
  }

  .album-page__quick-facts {
    grid-template-columns: 1fr;
  }

  .album-page__hero-media .content-media__image {
    aspect-ratio: 1 / 1;
  }
}

/* Final live-QA compaction: keep the publication promise and first action above the fold. */
.front-hero--editorial {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 1.08fr);
  padding-top: 0.5rem;
}

.front-hero--editorial .hero-card h1 {
  font-size: clamp(2.55rem, 4.3vw, 3.8rem);
}

.front-hero--editorial .hero-media {
  min-height: 390px;
  max-height: 460px;
}

@media (max-width: 800px) {
  .front-hero--editorial {
    grid-template-areas: 'card' 'media';
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-main {
    padding-top: 0.35rem;
  }

  .front-hero--editorial {
    gap: 0.8rem;
    padding-top: 0.25rem;
  }

  .front-hero--editorial .hero-card {
    padding: 1.15rem;
  }

  .front-hero--editorial .hero-card h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(2.25rem, 10.5vw, 2.85rem);
    line-height: 0.99;
  }

  .front-hero--editorial .hero-card p:not(.front-hero__date) {
    font-size: 0.97rem;
    line-height: 1.5;
  }

  .front-hero__date {
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
  }

  .front-hero__actions {
    gap: 0.55rem;
    margin-top: 0.9rem;
  }
}
