/* ZorikLynDrex — design tokens */
:root {
  --bg: #0d0c0b;
  --bg-soft: #110b05;
  --bg-card: rgba(20, 20, 20, 0.88);
  --bg-card-strong: rgba(14, 14, 14, 0.98);
  --bg-pill: rgba(255, 126, 0, 0.08);
  --bg-pill-strong: rgba(255, 126, 0, 0.22);
  --border-soft: rgba(255, 255, 255, 0.05);
  --border-orange: rgba(255, 121, 0, 0.28);
  --border-orange-strong: rgba(255, 121, 0, 1);
  --text: #fff7ec;
  --text-soft: #efe6d8;
  --text-muted: #c5bba9;
  --orange: #ff7e00;
  --orange-bright: #ff9f2d;
  --orange-warm: #ffab49;
  --orange-pale: #ffcb92;
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-orange: 0 18px 40px rgba(255, 110, 0, 0.18);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --container: 1360px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-image:
    radial-gradient(circle at 16% 12%, rgba(255, 140, 0, 0.18), transparent 38%),
    radial-gradient(circle at 88% 32%, rgba(255, 110, 0, 0.13), transparent 42%),
    radial-gradient(circle at 12% 58%, rgba(255, 120, 0, 0.10), transparent 45%),
    radial-gradient(circle at 92% 82%, rgba(255, 130, 0, 0.10), transparent 45%),
    linear-gradient(180deg, #0d0c0b 0%, #110b05 100%);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.78);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 22px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 19px;
  color: var(--text);
}

.brand-mark {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 30% 30%, #ffb257, var(--orange) 60%, #ff6b00 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 8px 22px rgba(255, 110, 0, 0.35);
  display: grid;
  place-items: center;
  color: #110b05;
}

.brand-mark svg { width: 22px; height: 22px; }

.main-nav {
  display: flex;
  gap: 6px;
}
.main-nav a {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  color: var(--text-soft);
  transition: background .2s ease, color .2s ease;
}
.main-nav a.is-active,
.main-nav a:hover {
  background: var(--bg-pill);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border-orange);
}

/* ---------- Section base ---------- */
main { display: block; }
section { padding: 60px 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 14px;
  font-weight: 600;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 880px;
}

.section-title .accent { color: var(--orange-bright); }

.section-head {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.section-lead {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.hero-title .accent { color: var(--orange-bright); }

.hero-lead {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, var(--orange-bright) 0%, var(--orange) 100%);
  color: #110b05;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 30px rgba(255, 121, 0, 0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 40px rgba(255, 121, 0, 0.45); }

.btn-ghost {
  background: rgba(15, 15, 15, 0.6);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border-orange);
}
.btn-ghost:hover { background: rgba(255, 126, 0, 0.08); }

.btn-sm { padding: 11px 18px; font-size: 14px; }

/* Stat row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 22px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: inset 0 0 0 1px var(--border-soft), var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 126, 0, 0.12), transparent 60%);
  pointer-events: none;
}
.stat-card strong {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: var(--orange-bright);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Hero showcase */
.hero-img {
  position: relative;
  margin: 0 auto;
}

.showcase-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  aspect-ratio: 478 / 503;
  background: linear-gradient(160deg, #19120a 0%, #0d0c0b 70%);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 0 0 1px var(--border-orange),
    var(--shadow-card),
    var(--shadow-orange);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(255, 138, 0, 0.45), transparent 38%),
    radial-gradient(circle at 18% 75%, rgba(255, 110, 0, 0.35), transparent 40%);
  filter: blur(8px);
}
.showcase-card svg.gamepad {
  position: relative;
  width: 62%;
  filter: drop-shadow(0 18px 40px rgba(255, 121, 0, 0.45));
}

.showcase-badge {
  position: absolute;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 0 1px var(--border-orange),
    0 14px 30px rgba(0, 0, 0, 0.55);
  min-width: 186px;
  max-width: 230px;
}
.showcase-badge strong {
  display: block;
  color: var(--orange-bright);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}
.showcase-badge p {
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.5;
}

.badge-top { top: 24px; left: -18px; }
.badge-bottom { bottom: 24px; right: -18px; }

/* ---------- Game cards ---------- */
.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.game-card {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow:
    inset 0 0 0 1px var(--border-soft),
    var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.game-card:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--border-orange), var(--shadow-card); }

.game-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-bottom: 1px solid var(--border-soft);
}

.game-icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 126, 0, 0.22), rgba(255, 126, 0, 0.06));
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--border-orange);
  color: var(--orange-bright);
}
.game-icon svg { width: 36px; height: 36px; }

.game-tag {
color: #FFD2A2;
font-size: 12.2px;
font-weight: 400;
line-height: 18.24px; /* 149.508% */
letter-spacing: 1.946px;
text-transform: uppercase;
  white-space: nowrap;
  border-radius: 999px;
border: 1px solid rgba(255, 140, 0, 0.18);
background: rgba(255, 122, 0, 0.12);
padding: 8px 11px;
}

.game-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.game-body h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.game-body p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
}

.game-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chip {
  font-size: 12.5px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  box-shadow: inset 0 0 0 1px var(--border-soft);
  font-weight: 500;
  flex-shrink: 0;
}

/* Wide vs small layout: top row is 2 large cards, next 4 are smaller */
.games-grid--mixed .game-card.is-wide { grid-column: span 1; }

@media (min-width: 900px) {
  .games-grid--mixed {
    grid-template-columns: repeat(12, 1fr);
  }
  .games-grid--mixed .game-card.is-wide { grid-column: span 6; }
  .games-grid--mixed .game-card.is-small { grid-column: span 3; }
}

/* ---------- Why feature articles ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.feature-card {
  padding: 25px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: inset 0 0 0 1px var(--border-soft), var(--shadow-card);
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 126, 0, 0.28), rgba(255, 126, 0, 0.06));
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--border-orange);
  font-size: 20px;
  margin-bottom: 30px;
}
.feature-card h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 14.8px;
  line-height: 1.6;
}

.aside-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card-strong);
  box-shadow: inset 0 0 0 1px var(--border-soft), var(--shadow-card);
  overflow: hidden;
  align-self: stretch;
}
.aside-card::after {
  content: "";
  position: absolute;
  right: -80px; bottom: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 121, 0, 0.45), rgba(255, 121, 0, 0) 70%);
  filter: blur(20px);
  pointer-events: none;
}
.aside-card h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 8px 0 18px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  max-width: 540px;
  position: relative;
}
.aside-card .aside-lead {
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 540px;
  position: relative;
}

.aside-list {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 0;
}
.aside-list li {
  list-style: none;
  padding: 18px 0;
  border-top: 1px solid var(--border-soft);
}
.aside-list li:first-child { border-top: 0; padding-top: 0; }
.aside-list strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.aside-list p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 460px;
}

/* ---------- Two content lanes ---------- */
.lanes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.lane-card {
  position: relative;
  padding: 25px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: inset 0 0 0 1px var(--border-soft), var(--shadow-card);
  overflow: hidden;
}
.lane-card::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 126, 0, 0.4), rgba(255, 126, 0, 0) 70%);
  filter: blur(18px);
}
.lane-card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
  margin-bottom: 14px;
}
.lane-card .lane-lead {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
  position: relative;
}

.lane-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.lane-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px var(--border-soft);
}
.lane-row strong {
  font-weight: 700;
  font-size: 15px;
}
.lane-row span {
  color: var(--text-muted);
  font-size: 14px;
}

.lane-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.lane-cell {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px var(--border-soft);
}
.lane-cell strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.lane-cell p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 36px;
  background: linear-gradient(135deg, rgba(255, 126, 0, 0.18) 0%, rgba(20, 20, 20, 0.95) 60%);
  box-shadow: inset 0 0 0 1px var(--border-orange), var(--shadow-card);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -120px; top: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 130, 0, 0.45), rgba(255, 130, 0, 0) 70%);
  filter: blur(30px);
  pointer-events: none;
}
.cta-banner h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 8px 0 12px;
}
.cta-banner p {
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 520px;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 40px;
  padding: 0 0 28px;
}
.footer-card {
  border-radius: var(--radius-lg);
  background: var(--bg-card-strong);
  box-shadow: inset 0 0 0 1px var(--border-soft), var(--shadow-card);
  padding: 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 18px 0 22px;
  max-width: 320px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px var(--border-soft);
  color: var(--text-soft);
  transition: background .2s ease;
}
.social-links a:hover { background: var(--bg-pill); color: var(--orange-bright); box-shadow: inset 0 0 0 1px var(--border-orange); }
.social-links svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-list a,
.footer-list span {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
  transition: color .15s ease;
}
.footer-list a:hover { color: var(--orange-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 22px;
  margin-top: 28px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 13px;
}

.game-info {
}
.container {
}
.game-info__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.game-info .hero-lead {
  max-width: 100%;
  margin-bottom: 0;
}
.game-info .btn {
  width: fit-content;
}


/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .section-head { grid-template-columns: 1fr; align-items: start; gap: 16px; margin-bottom: 28px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-showcase { min-height: 0; margin-top: 0; }
  .why-grid, .lanes-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .badge-top { left: 8px; }
  .badge-bottom { right: 8px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  section { padding: 44px 0; }
  .hero { padding: 44px 0 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .games-grid, .games-grid--mixed { grid-template-columns: 1fr !important; }
  .why-features { grid-template-columns: 1fr; }
  .lane-cards { grid-template-columns: 1fr; }
  .lane-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; }
  .main-nav { flex-wrap: wrap; justify-content: center; }
  .header-inner { padding: 16px 0; }
  .footer-card, .cta-banner { padding: 24px; }
  .game-card-head { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ============= Cookies popup ============= */
.cookies {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  max-width: 940px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 32px 36px;
  color: #fff;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(255, 138, 33, 0.35) 0%, rgba(255, 138, 33, 0.05) 38%, rgba(0, 0, 0, 0) 65%),
    linear-gradient(180deg, #1a1410 0%, #0a0807 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookies.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.cookies-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.01em;
}
.cookies-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 22px;
  max-width: 760px;
}
.cookies-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookies-actions .btn { cursor: pointer; border: none; font: inherit; }
.cookies-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

@media (max-width: 600px) {
  .cookies { left: 12px; right: 12px; bottom: 12px; padding: 22px 20px; border-radius: 16px; }
  .cookies-title { font-size: 24px; }
  .cookies-text { font-size: 14px; }
  .cookies-actions { flex-direction: column; align-items: stretch; }
  .cookies-actions .btn { width: 100%; text-align: center; }
}

/* ============= Legal / policy pages ============= */
.legal { padding: 60px 0 80px; }
.legal-title {
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.legal-prose {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 920px;
}
.legal-meta { color: var(--text-muted); margin-bottom: 18px; }
.legal-prose h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 10px;
  letter-spacing: -0.01em;
}
.legal-prose h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 8px;
}
.legal-prose p { margin: 0 0 12px; }
.legal-prose ul { padding-left: 22px; margin: 8px 0 14px; }
.legal-prose li { margin: 6px 0; }
.legal-prose a { color: var(--orange-bright); }
.legal-prose a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .legal { padding: 36px 0 56px; }
  .legal-prose { font-size: 15px; }
  .legal-prose h2 { font-size: 19px; }
}
