:root {
  --black: #050504;
  --black-raised: #0b0b09;
  --metal: #151510;
  --metal-deep: #0d0d0b;
  --brass-hi: #e5c46c;
  --brass: #b8872d;
  --bronze: #76501f;
  --ink: #f2ead8;
  --muted: #bfb39c;
  --line: rgba(202, 153, 60, .35);
  --emerald: #1a604d;
  --sapphire: #234f85;
  --ruby: #732b31;
  --amethyst: #5d447b;
  --petrol: #1f6165;
  --topaz: #94652e;
  --radius: 2px;
  --shadow-metal: 0 16px 42px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.035);
  --font-ui: "Manrope", "Segoe UI", system-ui, sans-serif;
}

@font-face { font-family: "Manrope"; src: url("assets/fonts/Manrope-Regular.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("assets/fonts/Manrope-SemiBold.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("assets/fonts/Manrope-Bold.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("assets/fonts/Manrope-ExtraBold.ttf") format("truetype"); font-weight: 800; font-style: normal; font-display: swap; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; padding-top: 8.5rem; overflow-x: hidden; color: var(--ink); background: radial-gradient(circle at 72% -20%, rgba(137,93,28,.12), transparent 32rem), var(--black); font-family: var(--font-ui); line-height: 1.58; }
a { color: inherit; }
button { font: inherit; }
.skip-link { position: fixed; top: -4rem; left: 1rem; z-index: 99; background: var(--brass-hi); color: #201606; padding: .6rem .9rem; text-decoration: none; }
.skip-link:focus { top: 1rem; }
.site-header { position: fixed; top: 0; right: 0; left: 0; z-index: 20; height: 8.5rem; background: var(--black); border-bottom: 1px solid var(--line); }
.header-inner { width: min(1160px, calc(100% - 2rem)); height: 100%; margin: 0 auto; display: grid; grid-template-columns: 230px 1fr; align-items: center; gap: 1.25rem; }
.brand-lockup { display: block; width: 230px; min-width: 0; }
.brand-lockup img { display: block; width: 100%; height: auto; }
.main-nav { justify-self: end; display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: .2rem; }
.main-nav a { position: relative; padding: .55rem .7rem; color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .03em; text-decoration: none; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; right: .7rem; bottom: .18rem; left: .7rem; height: 1px; background: transparent; }
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a.active { color: var(--brass-hi); }
.main-nav a.active::after { background: var(--brass); }
.hero { position: relative; isolation: isolate; min-height: min(78svh, 720px); display: grid; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; z-index: -2; }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(5,5,4,.96) 0%, rgba(5,5,4,.82) 34%, rgba(5,5,4,.36) 62%, rgba(5,5,4,.1) 100%), linear-gradient(0deg, var(--black), transparent 34%); }
.hero-copy { width: min(1160px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(4.5rem, 10vw, 9rem) 0; max-width: min(1160px, calc(100% - 2rem)); }
.hero-copy > * { max-width: 40rem; }
.eyebrow { margin: 0 0 .65rem; color: var(--brass-hi); font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1,h2,p { margin-top: 0; }
h1 { margin-bottom: 1.15rem; font-size: clamp(2.4rem, 5.7vw, 5.2rem); line-height: 1.03; letter-spacing: -.045em; }
h2 { margin-bottom: 1rem; font-size: clamp(1.55rem, 3vw, 2.55rem); line-height: 1.12; letter-spacing: -.035em; }
.hero-lede, .article-intro { color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.button { appearance: none; display: inline-flex; justify-content: center; align-items: center; min-height: 2.85rem; padding: .76rem 1rem; border: 1px solid var(--brass); border-radius: var(--radius); cursor: pointer; font-size: .8rem; font-weight: 800; letter-spacing: .04em; text-align: center; text-decoration: none; text-transform: uppercase; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover, .button:focus-visible { transform: translateY(-1px); }
.button-primary { color: #211604; background: linear-gradient(180deg, var(--brass-hi), var(--brass)); box-shadow: inset 0 1px rgba(255,255,255,.32), 0 6px 19px rgba(0,0,0,.3); }
.button-quiet { color: var(--brass-hi); background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(0,0,0,.1)); border-color: var(--line); box-shadow: var(--shadow-metal); }
.section { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(4rem, 8vw, 7rem) 0; }
.section-heading { margin-bottom: 2rem; }
.section-heading h2 { max-width: 35rem; }
.feature-panel, .article-section { position: relative; isolation: isolate; overflow: hidden; border: 1px solid rgba(214, 168, 80, .62); border-radius: 0; background: repeating-linear-gradient(14deg, rgba(255,255,255,.018) 0 1px, transparent 1px 6px), linear-gradient(145deg, #211f18, #0a0a08 70%); box-shadow: inset 0 0 0 2px #080806, inset 0 0 0 3px rgba(206, 151, 53, .28), var(--shadow-metal); }
.feature-panel { display: grid; grid-template-columns: 1.3fr .7fr; }
.feature-panel::after, .article-section::after { position: absolute; z-index: 3; inset: 5px; content: ""; pointer-events: none; border: 1px solid rgba(143, 103, 39, .55); background: radial-gradient(circle at 7px 7px, #1a140c 0 2px, #c08c34 2.5px 3px, transparent 3.6px), radial-gradient(circle at calc(100% - 7px) 7px, #1a140c 0 2px, #c08c34 2.5px 3px, transparent 3.6px), radial-gradient(circle at 7px calc(100% - 7px), #1a140c 0 2px, #c08c34 2.5px 3px, transparent 3.6px), radial-gradient(circle at calc(100% - 7px) calc(100% - 7px), #1a140c 0 2px, #c08c34 2.5px 3px, transparent 3.6px); }
.video-frame { position: relative; overflow: hidden; min-height: 15rem; background: #070706; border: 1px solid rgba(229,196,108,.18); }
.video-frame img { display: block; width: 100%; height: 100%; min-height: inherit; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.05); }
.video-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(0,0,0,.02), rgba(0,0,0,.28)); pointer-events: none; }
.play-button { position: absolute; z-index: 1; top: 50%; left: 50%; width: 4rem; height: 4rem; display: grid; place-items: center; transform: translate(-50%,-50%); border: 1px solid var(--brass-hi); color: #211604; background: linear-gradient(180deg, var(--brass-hi), var(--brass)); box-shadow: 0 0 0 6px rgba(0,0,0,.48); font-size: 1.1rem; }
.video-duration { position: absolute; z-index: 1; right: .75rem; bottom: .65rem; padding: .2rem .45rem; color: var(--ink); background: rgba(0,0,0,.7); font-size: .75rem; font-weight: 800; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.5rem, 4vw, 3rem); color: var(--muted); }
.text-link { color: var(--brass-hi); font-weight: 800; text-decoration-color: rgba(229,196,108,.45); text-underline-offset: .26em; }
/* FINAL / OWNER-STYLE-LOCK: Themenblock. Keine gestalterischen Änderungen ohne neue Owner-Freigabe. */
.topics-section { position: relative; }
.topics-section .section-heading { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.topics-section .section-heading h2 { max-width: 42rem; }
.topic-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-top: 1px solid rgba(229,196,108,.46);
  border-bottom: 1px solid rgba(118,80,31,.62);
  background: rgba(202,153,60,.14);
  box-shadow: 0 42px 84px -66px rgba(184,135,45,.62);
}
.topic-card {
  --art-width: 62%;
  --copy-width: 49%;
  --panel-height: 22rem;
  --art-x: 0%;
  --art-y: 37%;
  --art-size: 515% auto;
  position: relative;
  isolation: isolate;
  display: block;
  min-height: var(--panel-height);
  overflow: hidden;
  color: var(--ink);
  background: #050504;
  text-decoration: none;
  box-shadow: inset 0 0 72px rgba(0,0,0,.48);
}
.topic-card::before,
.topic-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.topic-card::before {
  inset: 0;
  background:
    linear-gradient(90deg, #050504 0%, rgba(5,5,4,.96) 27%, rgba(5,5,4,.72) 44%, rgba(5,5,4,.14) 72%, rgba(5,5,4,.42) 100%),
    radial-gradient(ellipse 66% 120% at 79% 52%, transparent 36%, rgba(0,0,0,.42) 100%);
}
.topic-card:nth-child(even)::before {
  background:
    linear-gradient(270deg, #050504 0%, rgba(5,5,4,.96) 27%, rgba(5,5,4,.72) 44%, rgba(5,5,4,.14) 72%, rgba(5,5,4,.42) 100%),
    radial-gradient(ellipse 66% 120% at 21% 52%, transparent 36%, rgba(0,0,0,.42) 100%);
}
.topic-card::after {
  right: 5%;
  bottom: 0;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229,196,108,.08) 22%, rgba(229,196,108,.38) 50%, rgba(229,196,108,.08) 78%, transparent);
}
.topic-art {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: var(--art-width);
  overflow: hidden;
  background-image: url("assets/theme-worlds-reference.png");
  background-repeat: no-repeat;
  background-position: var(--art-x) var(--art-y);
  background-size: var(--art-size);
  filter: saturate(.88) contrast(1.08) brightness(.84);
  transform: scale(1.01);
  transform-origin: center;
  transition: transform .7s ease, filter .7s ease;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
}
.topic-card:nth-child(even) .topic-art {
  right: auto;
  left: 0;
  -webkit-mask-image: linear-gradient(270deg, transparent 0%, #000 34%, #000 100%);
  mask-image: linear-gradient(270deg, transparent 0%, #000 34%, #000 100%);
}
.topic-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(229,196,108,.09), transparent 19%),
    linear-gradient(0deg, rgba(0,0,0,.24), transparent 42%);
  box-shadow: inset 0 0 58px rgba(0,0,0,.36);
  pointer-events: none;
}
.topic-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--copy-width);
  min-height: var(--panel-height);
  padding: clamp(2.25rem, 5vw, 4.75rem);
}
.topic-card:nth-child(even) .topic-copy { margin-left: auto; }
.topic-name {
  display: block;
  min-width: 0;
  color: #eee4cf;
  font-size: clamp(1.65rem, 3.1vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-wrap: balance;
  transition: color .3s ease, transform .5s ease;
}
.topic-name::after {
  content: "";
  display: block;
  width: clamp(3.5rem, 7vw, 5.25rem);
  height: 1px;
  margin-top: 1.35rem;
  background: linear-gradient(90deg, rgba(229,196,108,.78), rgba(118,80,31,.2), transparent);
}
.topic-copy small {
  display: block;
  min-width: 0;
  max-width: 25rem;
  margin-top: 1.25rem;
  color: #c8bda8;
  font-size: 1rem;
  line-height: 1.6;
}
.topic-card:hover .topic-art, .topic-card:focus-visible .topic-art { transform: scale(1.035); filter: saturate(.94) contrast(1.1) brightness(.9); }
.topic-card:hover .topic-name, .topic-card:focus-visible .topic-name { color: var(--brass-hi); transform: translateX(3px); }
.topic-card:nth-child(even):hover .topic-name, .topic-card:nth-child(even):focus-visible .topic-name { transform: translateX(-3px); }
.topic-card:focus-visible { outline: 2px solid rgba(229,196,108,.9); outline-offset: -3px; }
.emerald { --art-width: 64%; --copy-width: 48%; --panel-height: 22.5rem; --art-x: .36%; --art-y: 37%; }
.sapphire { --art-width: 60%; --copy-width: 47%; --panel-height: 24rem; --art-size: 570% auto; --art-x: 26.05%; --art-y: 36%; }
.ruby { --art-width: 70%; --copy-width: 46%; --panel-height: 21.5rem; --art-x: 50%; --art-y: 38%; }
.amethyst { --art-width: 63%; --copy-width: 49%; --panel-height: 23.5rem; --art-x: 74.82%; --art-y: 36%; }
.petrol { --art-width: 66%; --copy-width: 47%; --panel-height: 22rem; --art-x: 99.64%; --art-y: 37%; }
.sapphire .topic-copy { justify-content: flex-end; padding-bottom: clamp(3rem, 6vw, 5.5rem); }
.ruby .topic-copy { justify-content: flex-end; padding-bottom: clamp(2.75rem, 5vw, 4.75rem); }
.amethyst .topic-copy { justify-content: flex-start; padding-top: clamp(3rem, 6vw, 5.25rem); }
.about-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 7vw, 7rem); border-top: 1px solid var(--line); }
.about-section p:last-child { color: var(--muted); font-size: 1.08rem; }
.site-footer { display: flex; justify-content: space-between; gap: 2rem; width: min(1100px, calc(100% - 2rem)); margin: 0 auto; padding: 1.75rem 0 2.3rem; color: var(--muted); border-top: 1px solid var(--line); font-size: .78rem; }
.site-footer p { margin: 0; }
.site-footer strong { color: var(--brass-hi); }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem; }
.site-footer a { text-underline-offset: .24em; }
.owner-note { color: #977b48; }
.article-main { padding: clamp(2rem, 5vw, 4.5rem) 1rem; }
.article-shell { width: min(860px, 100%); margin: 0 auto; }
.article-header { padding: 1.5rem 0 2rem; }
.article-header h1 { font-size: clamp(2.3rem, 5vw, 4.5rem); max-width: 45rem; }
.article-meta { color: #9a8052; font-size: .78rem; }
.article-video { min-height: clamp(18rem, 50vw, 28rem); margin-bottom: 1rem; }
.article-section { margin-top: 1rem; padding: clamp(1.5rem, 4vw, 2.5rem); }
.article-section p:last-child { margin-bottom: 0; }
.article-section p { color: var(--muted); }
.key-panel { border-left: 3px solid var(--brass); }
.source-panel ul { padding-left: 1.1rem; }
.source-panel li + li { margin-top: .5rem; }
.source-panel a { color: var(--brass-hi); text-underline-offset: .24em; }
.source-note { font-size: .82rem; }
.source-map { color: var(--muted); font-size: .86rem; }
.circulation-figure { margin-right: 0; margin-left: 0; }
.circulation-figure figcaption { max-width: 46rem; }
.circulation-figure img { display: block; width: min(100%, 60rem); height: auto; margin: 1.5rem auto 0; border: 1px solid rgba(229,196,108,.22); background: #070706; }
.vote-panel { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; }
.vote-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .5rem; }
.vote-feedback { width: 100%; margin: .25rem 0 0; color: var(--brass-hi); font-size: .8rem; text-align: right; }
@media (max-width: 760px) {
  body { padding-top: 12rem; }
  .site-header { height: 12rem; }
  .header-inner { grid-template-columns: 1fr; gap: .1rem; padding: .55rem 0; }
  .brand-lockup { width: min(250px, 86%); margin: 0 auto; }
  .main-nav { justify-self: center; justify-content: center; }
  .main-nav a { font-size: .68rem; padding: .42rem .48rem; }
  .hero { min-height: 38rem; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,5,4,.94), rgba(5,5,4,.65) 60%, rgba(5,5,4,.22)), linear-gradient(0deg, var(--black), transparent 42%); }
  .hero-copy { padding: 14rem 0 4rem; }
  .feature-panel, .about-section, .vote-panel { grid-template-columns: 1fr; }
  .feature-copy { padding: 1.45rem; }
  .site-footer { flex-direction: column; gap: .75rem; }
  .site-footer nav { justify-content: flex-start; }
  .vote-actions { justify-content: flex-start; }
  .vote-feedback { text-align: left; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } }

/* v1-Ergänzungen: ausschließlich für die im Auftrag fehlenden Seiten und Zustände. */
code { padding: .08em .3em; color: var(--brass-hi); background: #090806; border: 1px solid rgba(229,196,108,.18); font-size: .88em; }
:focus-visible { outline: 3px solid var(--brass-hi); outline-offset: 4px; }
h3 { margin: 0 0 .75rem; color: var(--ink); font-size: 1.35rem; line-height: 1.2; }
.heading-row { display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.heading-row > div > :last-child { margin-bottom: 0; }
.video-list { display: grid; gap: 1rem; }
.video-placeholder .feature-copy h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }
.video-card { overflow: hidden; border: 1px solid rgba(214,168,80,.62); background: linear-gradient(145deg,#211f18,#0a0a08 70%); box-shadow: inset 0 0 0 2px #080806, inset 0 0 0 3px rgba(206,151,53,.28), var(--shadow-metal); }
.video-card-link { display: grid; grid-template-columns: 1.3fr .7fr; min-height: 16rem; color: inherit; text-decoration: none; }
.video-card-link img { width: 100%; height: 100%; object-fit: cover; }
.video-card-copy { display: flex; flex-direction: column; justify-content: center; gap: .5rem; padding: clamp(1.5rem,4vw,3rem); }
.video-card-copy small, .video-card-copy span { color: var(--muted); }
.video-card-copy strong { color: var(--ink); font-size: 1.35rem; }
.social-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,7vw,7rem); border-top: 1px solid var(--line); }
.social-links { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.social-note { width: 100%; margin: 0; color: var(--muted); font-size: .88rem; }
.content-main { width: min(860px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(2.5rem,6vw,5rem) 0; }
.page-heading { padding: 1.5rem 0 2rem; }
.page-heading h1 { font-size: clamp(2.5rem,5vw,4.5rem); max-width: 45rem; }
.page-intro { max-width: 44rem; color: var(--muted); font-size: clamp(1rem,1.7vw,1.2rem); }
.content-panel { position: relative; overflow: hidden; margin-top: 1rem; padding: clamp(1.5rem,4vw,2.5rem); border: 1px solid rgba(214,168,80,.62); background: repeating-linear-gradient(14deg,rgba(255,255,255,.018) 0 1px,transparent 1px 6px),linear-gradient(145deg,#211f18,#0a0a08 70%); box-shadow: inset 0 0 0 2px #080806, inset 0 0 0 3px rgba(206,151,53,.28), var(--shadow-metal); }
.content-panel::after { position: absolute; z-index: 3; inset: 5px; content: ""; pointer-events: none; border: 1px solid rgba(143,103,39,.55); background: radial-gradient(circle at 7px 7px,#1a140c 0 2px,#c08c34 2.5px 3px,transparent 3.6px),radial-gradient(circle at calc(100% - 7px) 7px,#1a140c 0 2px,#c08c34 2.5px 3px,transparent 3.6px),radial-gradient(circle at 7px calc(100% - 7px),#1a140c 0 2px,#c08c34 2.5px 3px,transparent 3.6px),radial-gradient(circle at calc(100% - 7px) calc(100% - 7px),#1a140c 0 2px,#c08c34 2.5px 3px,transparent 3.6px); }
.content-panel p, .content-panel li { color: var(--muted); }
.content-panel > :last-child { margin-bottom: 0; }
.owner-field, .legal-warning { padding: 1rem 1.1rem; color: var(--muted); background: #120f0a; border-left: 3px solid var(--brass); }
.legal-warning { margin-bottom: 2rem; color: var(--brass-hi); }
.legal-list { margin: 0; }
.legal-list > div { display: grid; grid-template-columns: minmax(12rem,.72fr) 1.28fr; gap: 1.5rem; padding: 1rem 0; border-top: 1px solid rgba(202,153,60,.22); }
.legal-list > div:first-child { padding-top: 0; border-top: 0; }
.legal-list dt { color: var(--ink); font-weight: 700; }
.legal-list dd { margin: 0; color: var(--brass-hi); }
.plain-list { padding-left: 1.2rem; }
.plain-list li + li { margin-top: .45rem; }
.legal-footnote { margin-top: 2rem; color: var(--muted); font-size: .88rem; }

@media (max-width: 900px) {
  .main-nav a { padding-right: .5rem; padding-left: .5rem; font-size: .7rem; }
  .topic-card, .topic-card:nth-child(even) {
    --panel-height: 30rem;
    --art-y: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: var(--panel-height);
  }
  .topic-card::before, .topic-card:nth-child(even)::before {
    background:
      linear-gradient(180deg, rgba(5,5,4,.02) 0%, rgba(5,5,4,.12) 48%, rgba(5,5,4,.82) 76%, #050504 100%),
      linear-gradient(90deg, rgba(5,5,4,.24), transparent 48%, rgba(5,5,4,.16));
  }
  .topic-card .topic-art, .topic-card:nth-child(even) .topic-art {
    inset: 0;
    width: 100%;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 63%, rgba(0,0,0,.72) 78%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 63%, rgba(0,0,0,.72) 78%, transparent 100%);
  }
  .topic-card .topic-copy, .topic-card:nth-child(even) .topic-copy {
    width: 100%;
    min-height: 0;
    margin: 14rem 0 0;
    padding: 2rem 1.5rem 2.25rem;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent, rgba(5,5,4,.94) 42%, #050504);
  }
  .topic-name { max-width: 34rem; font-size: clamp(1.65rem, 6vw, 2.25rem); }
  .topic-copy small { max-width: 32rem; margin-top: 1rem; }
  .topic-card:nth-child(even):hover .topic-name, .topic-card:nth-child(even):focus-visible .topic-name { transform: translateX(3px); }
}

@media (max-width: 760px) {
  .heading-row, .social-section { grid-template-columns: 1fr; display: grid; align-items: start; gap: .5rem; }
  .video-card-link { grid-template-columns: 1fr; }
  .legal-list > div { grid-template-columns: 1fr; gap: .3rem; }
}

@media (max-width: 420px) {
  body { padding-top: 13.5rem; }
  .site-header { height: 13.5rem; }
  .header-inner { width: calc(100% - 1rem); }
  .brand-lockup { width: min(210px,78%); }
  .main-nav { width: 100%; justify-content: center; }
  .main-nav a { min-height: 40px; padding: .35rem .45rem; font-size: .64rem; }
  .hero-copy > * { max-width: 100%; }
  h1 { overflow-wrap: anywhere; }
  .topics-section .section-heading { margin-bottom: 2rem; }
  .topic-card, .topic-card:nth-child(even) { --panel-height: 27rem; --art-y: 59%; min-height: var(--panel-height); }
  .topic-card .topic-copy, .topic-card:nth-child(even) .topic-copy {
    margin-top: 12.5rem;
    padding: 1.5rem 1.25rem 1.8rem;
    background: #050504;
    box-shadow: 0 -2.35rem 2.75rem rgba(5,5,4,.94);
  }
  .topic-card:nth-child(even) .topic-copy { align-items: flex-end; text-align: right; }
  .topic-card:nth-child(even) .topic-name::after { margin-left: auto; background: linear-gradient(270deg, rgba(229,196,108,.78), rgba(118,80,31,.2), transparent); }
  .topic-name { font-size: 1.55rem; }
  .topic-copy small { font-size: .95rem; }
  .emerald { --art-size: 546% auto; --art-x: 1.03%; --art-y: 60%; }
  .sapphire { --art-size: 587% auto; --art-x: 25.89%; --art-y: 59%; }
  .ruby { --art-size: 541% auto; --art-x: 50%; --art-y: 61%; }
  .amethyst { --art-size: 577% auto; --art-x: 74.19%; --art-y: 59%; }
  .petrol { --art-size: 556% auto; --art-x: 98.77%; --art-y: 60%; }
}

@media print {
  body { padding-top: 0; color: #111; background: #fff; }
  .site-header, .site-footer, .skip-link { display: none; }
  .content-panel, .article-section { color: #111; background: #fff; border: 1px solid #444; box-shadow: none; }
  .content-panel::after, .article-section::after { display: none; }
}
