/* ============================================================
   geld-falten.com — site-wide styles
   Built on top of tokens.css from the Falten-mit-Yvonne system.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; }
img { max-width: 100%; display: block; }
a { color: var(--fmy-teal-500); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }

:focus-visible {
  outline: 3px solid var(--fmy-teal-400);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}
.narrow { max-width: 760px; }

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

/* ---------------- Skip link ---------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--fmy-ink); color: var(--fmy-white);
  padding: 8px 16px; border-radius: var(--r-sm);
  z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ============================================================
   Header / top nav
   ============================================================ */
.site-header {
  background: var(--fmy-paper);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(6px);
  background-color: rgba(250, 248, 241, 0.92);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--fg);
}
.brand img {
  width: 56px; height: 56px;
  filter: drop-shadow(var(--shadow-paper));
}
.brand__name {
  font-family: var(--font-script);
  font-size: 2rem;
  line-height: 1;
  color: var(--fg);
  white-space: nowrap;
}
.brand__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fmy-teal-500);
  margin-top: 2px;
}

.nav {
  display: flex; align-items: center; gap: 4px;
}
.nav a {
  display: inline-block;
  padding: 10px 14px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  border-radius: var(--r-md);
  transition: background-color 200ms ease, color 200ms ease;
  white-space: nowrap;
}
.nav a:hover { background: var(--fmy-mint-100); }
.nav a.is-active { background: var(--fmy-sun-200); color: var(--fmy-ink); }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 8px 12px; cursor: pointer;
  font-weight: 800;
  background: var(--fmy-white);
}

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; }
  .nav {
    position: absolute; top: 100%; right: 16px; left: 16px;
    background: var(--fmy-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    flex-direction: column; align-items: stretch;
    padding: 8px;
    box-shadow: var(--shadow-3);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; }
  .brand__name { font-size: 1.6rem; }
  .brand__sub { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: var(--fs-base);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(0.22,1,0.36,1),
              background-color 200ms ease,
              box-shadow 200ms ease;
  box-shadow: var(--shadow-1);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-1); }

.btn--primary {
  background: var(--fmy-sun-400);
  color: var(--fmy-ink);
  border-color: var(--fmy-sun-500);
}
.btn--primary:hover { background: var(--fmy-sun-500); }

.btn--secondary {
  background: var(--fmy-teal-400);
  color: var(--fmy-white);
  border-color: var(--fmy-teal-500);
}
.btn--secondary:hover { background: var(--fmy-teal-500); }

.btn--ghost {
  background: var(--fmy-white);
  color: var(--fg);
  border-color: var(--border-strong);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--fmy-paper-soft); }

.btn--lg { padding: 16px 28px; font-size: var(--fs-md); }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ============================================================
   Hero (homepage)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero__band {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding-block: clamp(48px, 8vw, 96px);
}
.hero__band--bg {
  background:
    linear-gradient(to right,
      var(--fmy-sun-300) 0%,
      var(--fmy-sun-200) 40%,
      var(--fmy-mint-200) 60%,
      var(--fmy-teal-200) 100%);
}
.hero__eyebrow {
  display: inline-block;
  background: var(--fmy-white);
  color: var(--fmy-teal-500);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
  border: 1px solid var(--fmy-paper-edge);
}
.hero__script {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  line-height: 0.95;
  margin: 0 0 12px;
  color: var(--fmy-ink);
}
.hero__h1 {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.hero__lead {
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--fmy-ink-soft);
  max-width: 56ch;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--fmy-mint-100);
  box-shadow: var(--shadow-3);
  border: 1px solid var(--fmy-paper-edge);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__swan {
  position: absolute;
  right: -20px; bottom: -10px;
  width: 38%;
  transform: rotate(-6deg);
  filter: drop-shadow(var(--shadow-paper));
  pointer-events: none;
}
@media (max-width: 880px) {
  .hero__band { grid-template-columns: 1fr; }
  .hero__visual { aspect-ratio: 5 / 4; }
}

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding-block: clamp(48px, 7vw, 88px); }
.section--mint { background: var(--fmy-mint-100); }
.section--paper { background: var(--fmy-paper); }
.section--sun { background: var(--fmy-sun-100); }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.section__eyebrow {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  font-weight: 800;
  color: var(--fmy-teal-500);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 12px;
  text-wrap: balance;
  letter-spacing: -0.01em;
}
.section__title--script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
}
.section__lead {
  font-size: var(--fs-md);
  color: var(--fg-soft);
  line-height: 1.6;
  text-wrap: pretty;
  margin: 0;
}

/* ============================================================
   Occasion grid (4 anlass tiles on homepage)
   ============================================================ */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.occasion {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--fmy-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px 24px;
  text-decoration: none;
  color: var(--fg);
  transition: transform 250ms cubic-bezier(0.22,1,0.36,1),
              box-shadow 250ms ease;
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.occasion:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.occasion__icon {
  width: 80px; height: 80px;
  display: grid; place-items: center;
  background: var(--fmy-sun-200);
  border-radius: var(--r-pill);
  margin-bottom: 18px;
  font-size: 2rem;
}
.occasion--mint .occasion__icon { background: var(--fmy-mint-200); }
.occasion--teal .occasion__icon { background: var(--fmy-teal-200); }
.occasion--rose .occasion__icon { background: #F4DAD2; }
.occasion__title {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: var(--fs-xl);
  margin: 0 0 8px;
}
.occasion__desc {
  font-size: var(--fs-sm);
  color: var(--fg-soft);
  margin: 0 0 16px;
  line-height: 1.55;
  text-wrap: pretty;
}
.occasion__count {
  margin-top: auto;
  font-size: var(--fs-sm);
  color: var(--fmy-teal-500);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   Video grid + tile
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.video-card {
  display: flex;
  flex-direction: column;
  background: var(--fmy-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 250ms cubic-bezier(0.22,1,0.36,1),
              box-shadow 250ms ease;
  box-shadow: var(--shadow-1);
  text-decoration: none;
  color: var(--fg);
  height: 100%;
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--fmy-mint-100);
  overflow: hidden;
}
.video-card__thumb img,
.video-card__thumb svg {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.video-card__play {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.video-card__play::after {
  content: "";
  width: 62px; height: 62px;
  border-radius: var(--r-pill);
  background: rgba(255, 0, 0, 0.92);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  background-image:
    linear-gradient(transparent, transparent),
    linear-gradient(transparent, transparent);
  position: relative;
}
.video-card__play::before {
  content: "";
  position: absolute;
  width: 0; height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  z-index: 2;
  margin-left: 4px;
}
.video-card__rank {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--fmy-sun-400);
  color: var(--fmy-ink);
  font-weight: 900;
  font-size: var(--fs-sm);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--fmy-ink);
}
.video-card__body {
  padding: 18px 18px 22px;
  display: flex; flex-direction: column;
  gap: 8px;
  flex: 1;
}
.video-card__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: var(--fs-md);
  line-height: 1.3;
  margin: 0;
  color: var(--fg);
  text-wrap: pretty;
}
.video-card__desc {
  font-size: var(--fs-sm);
  color: var(--fg-soft);
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}
.video-card__meta {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--fg-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.video-card__meta .arrow { color: var(--fmy-teal-500); font-size: var(--fs-md); }

/* Placeholder thumbnail when no YouTube ID is set yet */
.thumb-placeholder {
  display: grid; place-items: center;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(45deg,
      var(--fmy-mint-100) 0 14px,
      var(--fmy-mint-200) 14px 28px);
  color: var(--fmy-ink-soft);
  font-family: var(--font-script);
  font-size: 2.5rem;
  text-align: center;
  padding: 12px;
  line-height: 1;
}

/* ============================================================
   Anlass / category page hero
   ============================================================ */
.cat-hero {
  padding-block: clamp(40px, 6vw, 72px);
  background: var(--fmy-mint-100);
  border-bottom: 1px solid var(--border);
}
.cat-hero__crumb {
  font-size: var(--fs-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--fmy-teal-500);
  margin-bottom: 10px;
}
.cat-hero__crumb a { color: inherit; text-decoration: none; }
.cat-hero__crumb a:hover { text-decoration: underline; }
.cat-hero__title {
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  margin: 0 0 14px;
}
.cat-hero__lead {
  max-width: 64ch;
  font-size: var(--fs-md);
  color: var(--fg-soft);
  line-height: 1.6;
  margin: 0;
}

/* Color variants per Anlass */
.cat-hero--hochzeit { background: linear-gradient(135deg, #F4DAD2 0%, var(--fmy-sun-200) 100%); }
.cat-hero--geburtstag { background: linear-gradient(135deg, var(--fmy-sun-200) 0%, var(--fmy-mint-200) 100%); }
.cat-hero--weihnachten { background: linear-gradient(135deg, var(--fmy-mint-200) 0%, var(--fmy-teal-200) 100%); }
.cat-hero--taufe { background: linear-gradient(135deg, var(--fmy-teal-200) 0%, var(--fmy-mint-100) 100%); }

/* ============================================================
   Video detail page
   ============================================================ */
.video-page {
  padding-block: clamp(40px, 6vw, 72px);
}
.video-page__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 880px) {
  .video-page__grid { grid-template-columns: 1fr; }
}
.video-page__thumb {
  display: block;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.video-page__thumb:hover { transform: translateY(-2px); box-shadow: var(--shadow-3); }
.video-page__thumb .video-card__play { transform: scale(1.4); }
.video-page__title {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.video-page__title a { color: var(--fg); text-decoration: none; }
.video-page__title a:hover { color: var(--fmy-teal-500); }
.video-page__lead {
  font-size: var(--fs-md);
  color: var(--fg-soft);
  line-height: 1.6;
  margin: 0 0 20px;
}
.video-page__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.video-page__meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: var(--fs-sm);
  color: var(--fg-muted);
}
.video-page__meta span { display: inline-flex; align-items: center; gap: 6px; }

.prose {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 72ch;
}
.prose h2 {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: var(--fs-xl);
  color: var(--fg);
  margin: 32px 0 12px;
  line-height: 1.2;
}
.prose h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: var(--fs-lg);
  color: var(--fg);
  margin: 24px 0 10px;
}
.prose p { margin: 0 0 14px; text-wrap: pretty; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--fg); font-weight: 800; }

/* ============================================================
   "So funktioniert" steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step {
  background: var(--fmy-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-1);
}
.step__num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--fmy-sun-400);
  color: var(--fmy-ink);
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: var(--fs-md);
  margin-bottom: 14px;
  border: 2px solid var(--fmy-ink);
}
.step h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: var(--fs-lg);
  margin: 0 0 8px;
}
.step p {
  font-size: var(--fs-base);
  color: var(--fg-soft);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   Über mich
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
}
.about-portrait {
  background: var(--fmy-ink);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  box-shadow: var(--shadow-3);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-script {
  font-family: var(--font-script);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  margin: 0 0 18px;
}

/* ============================================================
   CTA bar
   ============================================================ */
.cta-bar {
  background: var(--fmy-sun-300);
  padding: clamp(40px, 6vw, 72px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bar__title {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0 0 16px;
  line-height: 1;
}
.cta-bar__lead {
  font-size: var(--fs-md);
  max-width: 56ch;
  margin: 0 auto 28px;
  color: var(--fmy-ink-soft);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  margin-top: auto;
  background: var(--fmy-ink);
  color: var(--fmy-paper);
  padding: 56px 0 28px;
}
.site-footer a { color: var(--fmy-sun-200); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-decoration-thickness: 2px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
.footer__brand .brand__name { color: var(--fmy-paper); }
.footer__brand .brand__sub { color: var(--fmy-sun-200); }
.footer__brand .brand img { background: var(--fmy-paper); border-radius: 50%; }
.footer__about {
  font-size: var(--fs-sm);
  color: rgba(250,248,241,0.75);
  margin-top: 14px;
  line-height: 1.55;
}
.footer__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--fmy-sun-300);
  margin: 0 0 14px;
}
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: var(--fs-sm); }
.footer__bottom {
  border-top: 1px solid rgba(250,248,241,0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: var(--fs-xs);
  color: rgba(250,248,241,0.6);
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  color: var(--fmy-paper);
  font-weight: 800;
  font-size: var(--fs-sm);
}
.footer__social a:hover { background: var(--fmy-sun-400); color: var(--fmy-ink); }

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  background: var(--fmy-white);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-3);
  z-index: 200;
  max-width: 720px;
  margin-inline: auto;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner__text {
  flex: 1; min-width: 220px;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--fg-soft);
}
.cookie-banner__text strong { color: var(--fg); }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   Misc
   ============================================================ */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag {
  display: inline-block;
  background: var(--fmy-mint-100);
  color: var(--fmy-teal-600);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  text-decoration: none;
}
.tag:hover { background: var(--fmy-mint-200); }

.related-list {
  display: grid;
  gap: 14px;
}
.related-item {
  display: flex;
  gap: 14px;
  padding: 12px;
  background: var(--fmy-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--fg);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.related-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.related-item__thumb {
  width: 110px; aspect-ratio: 16 / 9;
  border-radius: var(--r-sm);
  overflow: hidden; flex-shrink: 0;
  background: var(--fmy-mint-100);
}
.related-item__thumb img,
.related-item__thumb svg { width: 100%; height: 100%; object-fit: cover; }
.related-item__title {
  font-weight: 800;
  font-size: var(--fs-sm);
  line-height: 1.3;
  margin: 0 0 4px;
}
.related-item__cat {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-weight: 800;
  color: var(--fmy-teal-500);
}

/* ============================================================
   Legal pages
   ============================================================ */
.legal {
  padding-block: clamp(40px, 6vw, 72px);
}
.legal h1 {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 24px;
}
.legal .prose { max-width: 72ch; }
