/* =========================================================
   Earn AI Push — earnaipush.life
   Design system: chalk / linen / push amber / signal indigo
   ========================================================= */

:root {
  --chalk: #FAFAF8;
  --linen: #F0EEE8;
  --amber: #D97706;
  --amber-dark: #B45309;
  --indigo: #312E81;
  --ink: #0C1222;
  --mist: #5B6472;
  --link-on-light: #9A3412;
  --link-on-soft: #3730A3;
  --border-soft: rgba(12, 18, 34, 0.10);
  --shadow-soft: 0 12px 32px rgba(12, 18, 34, 0.08);
  --shadow-card: 0 8px 24px rgba(12, 18, 34, 0.07);
  --radius-card: 12px;
  --radius-pill: 999px;
  --font-head: "Sora", "Segoe UI", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--chalk);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 700;
}
p { margin: 0 0 1.1em; }
button { font-family: var(--font-body); cursor: pointer; }
input, textarea, select { font-family: var(--font-body); font-size: 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--chalk);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Surfaces ---------- */
.surface-light  { background: var(--chalk); color: var(--ink); }
.surface-soft   { background: var(--linen); color: var(--ink); }
.surface-accent { background: var(--amber); color: var(--chalk); }
.surface-signal { background: var(--indigo); color: var(--chalk); }

.surface-light a,
.surface-accent a { color: var(--link-on-light); text-decoration: underline; text-decoration-color: rgba(154,52,18,0.35); }
.surface-soft a { color: var(--link-on-soft); text-decoration: underline; text-decoration-color: rgba(55,48,163,0.35); }
.surface-signal a { color: var(--chalk); text-decoration: underline; text-decoration-color: rgba(250,250,248,0.5); }
.surface-accent a { color: var(--ink); text-decoration-color: rgba(12,18,34,0.35); }

.surface-signal, .surface-accent { --mist: rgba(250,250,248,0.82); }

/* ---------- Soft bar under H2 ---------- */
.soft-bar {
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: var(--amber);
  margin: 0 0 18px;
}
.surface-signal .soft-bar,
.surface-accent .soft-bar { background: var(--chalk); }
.eyebrow {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  font-weight: 600;
  margin: 0 0 10px;
}
.surface-signal .eyebrow,
.surface-accent .eyebrow { color: var(--chalk); opacity: 0.85; }

/* ---------- Buttons / pills ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  min-height: 44px;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--amber);
  color: var(--chalk) !important;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--amber-dark); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--ink) !important;
}
.surface-signal .btn-outline,
.surface-accent .btn-outline { color: var(--chalk) !important; }
.btn-outline:hover { background: rgba(12,18,34,0.06); }
.surface-signal .btn-outline:hover,
.surface-accent .btn-outline:hover { background: rgba(250,250,248,0.14); }
.btn-ghost {
  background: transparent;
  color: var(--link-on-light) !important;
  padding: 13px 8px;
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(6px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--ink) !important;
  text-decoration: none !important;
  flex-shrink: 0;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--amber);
  color: var(--chalk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  flex-shrink: 0;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink) !important;
  text-decoration: none !important;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { border-color: var(--amber); }
.nav-links a.nav-active {
  color: var(--amber-dark) !important;
  border-color: var(--amber);
}
.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 11px 24px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--chalk);
  flex-shrink: 0;
}
.nav-toggle-bars {
  position: relative;
  width: 22px;
  height: 16px;
}
.nav-toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 7px; }
.nav-toggle-bars span:nth-child(3) { top: 14px; }
body.menu-open .nav-toggle-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile fullscreen overlay menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--chalk);
  z-index: 900;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
  visibility: hidden;
}
body.menu-open .nav-overlay {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.nav-overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.nav-overlay-close {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--chalk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
}
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.nav-overlay-links a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
  padding: 16px 4px;
  border-bottom: 1px solid var(--border-soft);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-overlay-links a.nav-active { color: var(--amber-dark); }
.nav-overlay-cta { margin-top: 30px; }
.nav-overlay-cta .btn { width: 100%; }
.nav-overlay-meta {
  margin-top: auto;
  padding-top: 24px;
  color: var(--mist);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-primary { display: none; }
  .nav-toggle { display: flex; }
}

/* =========================================================
   Hero — Pattern G: Momentum Stack
   ========================================================= */
.hero-stack {
  display: flex;
  flex-direction: column;
  min-height: 92vh;
}
.hero-top {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  padding: 64px 24px 40px;
  position: relative;
}
.hero-top-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-dark);
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.08;
  max-width: 15ch;
  margin-bottom: 0;
}
.hero-push-bar {
  width: 96px;
  height: 4px;
  background: var(--amber);
  border-radius: 999px;
  margin: 18px 0 22px;
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--mist);
  max-width: 46ch;
  margin-bottom: 0;
}
.hero-bottom {
  flex: 0 0 38%;
  position: relative;
  min-height: 220px;
  max-height: 340px;
  overflow: visible;
}
.hero-bottom img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center 35%;
  min-height: 220px;
  display: block;
}
.hero-trust-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  width: calc(100% - 48px);
  max-width: 560px;
  background: var(--chalk);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 20;
  border: 1px solid var(--border-soft);
}
.hero-trust-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ink);
  line-height: 1.35;
}
.hero-trust-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--mist);
  margin-top: 2px;
}
.hero-trust-ctas {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-trust-ctas .btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
}
.hero-after-space { height: 24px; }

@media (max-width: 768px) {
  .hero-stack { min-height: 74vh; }
  .hero-top { padding: 40px 20px 32px; }
  .hero-title { max-width: 100%; }
  .hero-bottom { flex: 0 0 auto; max-height: 260px; min-height: 200px; }
  .hero-bottom img { max-height: 260px; min-height: 200px; }
  .hero-trust-card {
    flex-direction: column;
    align-items: flex-start;
    bottom: 12px;
    max-width: calc(100% - 32px);
    width: calc(100% - 32px);
    padding: 12px 14px;
  }
  .hero-after-space { height: 20px; }
}

/* =========================================================
   Generic section spacing
   ========================================================= */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-head { max-width: 720px; margin: 0 0 44px; }
.section-head.center { margin: 0 auto 44px; text-align: center; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.28rem; }

/* ---------- Split / photo-text ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.split.reverse { grid-template-columns: 1fr 1.1fr; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse .split-media { order: 0; }
}

/* ---------- Soft-rect cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) {
  .card-grid, .card-grid.cols-3 { grid-template-columns: 1fr; }
}
.card-soft {
  background: var(--chalk);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.surface-soft .card-soft { background: var(--chalk); }
.card-soft .card-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--amber);
  color: var(--chalk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 16px;
}
.card-soft h3 { margin-bottom: 8px; }
.card-soft p:last-child { margin-bottom: 0; }

/* ---------- Timeline (horizontal checkpoints) ---------- */
.checkpoint-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  counter-reset: cp;
}
.checkpoint-line::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: var(--border-soft);
  z-index: 0;
}
.checkpoint {
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.checkpoint-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--chalk);
  border: 2px solid var(--amber);
  color: var(--amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 860px) {
  .checkpoint-line { grid-template-columns: 1fr; gap: 26px; }
  .checkpoint-line::before { display: none; }
}

/* ---------- Programme / service cards (photo cards) ---------- */
.program-card {
  background: var(--chalk);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
}
.program-card img { aspect-ratio: 16/10; object-fit: cover; }
.program-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.program-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--chalk);
  background: var(--indigo);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  width: fit-content;
}
.program-price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--amber-dark);
  margin: auto 0 12px;
  padding-top: 12px;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
@media (max-width: 900px) { .program-grid { grid-template-columns: 1fr; } }

/* ---------- Quote ---------- */
.quote-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.quote-block blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 18px;
}
.quote-cite { color: var(--mist); font-size: 0.95rem; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: inherit;
  min-height: 44px;
}
.faq-q .faq-plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  color: var(--amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.faq-item[data-open="true"] .faq-plus { transform: rotate(45deg); }
.faq-a {
  padding: 0 4px 22px;
  color: var(--mist);
  max-width: 90ch;
}
.faq-a p:last-child { margin-bottom: 0; }
.js .faq-item[data-open="false"] .faq-a { display: none; }

/* ---------- Disclaimer box ---------- */
.disclaimer-box {
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--amber);
  border-radius: 10px;
  padding: 20px 24px;
  background: var(--linen);
  font-size: 0.94rem;
  color: var(--mist);
}
.surface-soft .disclaimer-box { background: var(--chalk); }
.disclaimer-box strong { color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-card);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 700px) { .cta-band { padding: 32px 24px; } }

/* =========================================================
   Forms
   ========================================================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .field-full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #FFFFFF;
  color: var(--ink);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 12px 14px;
  min-height: 44px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--mist);
}
.field-consent input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.field-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { font-size: 0.86rem; color: var(--mist); margin-top: 14px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-soft);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--mist); max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col address { font-style: normal; color: var(--mist); line-height: 1.7; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 32px;
  font-size: 0.86rem;
  color: var(--mist);
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-disclaimer {
  font-size: 0.82rem;
  color: var(--mist);
  padding-bottom: 18px;
  max-width: 100ch;
}

/* =========================================================
   Cookie banner
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--chalk);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
  z-index: 800;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: 0.92rem; color: rgba(250,250,248,0.85); margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; font-size: 0.86rem; }
.cookie-actions .btn-primary { background: var(--amber); }
.cookie-actions .btn-outline { border-color: rgba(250,250,248,0.5); color: var(--chalk) !important; }

/* =========================================================
   Scroll reveal (JS-enabled only)
   ========================================================= */
.js .fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js .fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js .fade-up { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Misc page bits
   ========================================================= */
.page-hero {
  padding: 68px 0 54px;
}
.page-hero h1 { font-size: clamp(2rem, 4.2vw, 3rem); max-width: 22ch; }
.page-hero p { max-width: 58ch; color: var(--mist); font-size: 1.08rem; }
.breadcrumb {
  font-size: 0.88rem;
  color: var(--mist);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--link-on-light); text-decoration: underline; }

.legal-content h2 { margin-top: 2em; }
.legal-content h3 { margin-top: 1.4em; }
.legal-content ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1.1em; }
.legal-content ul li { margin-bottom: 0.4em; }

.table-wrap { overflow-x: auto; margin-bottom: 1.4em; }
table.plain { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
table.plain th, table.plain td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border-soft); }
table.plain th { font-family: var(--font-head); }

.icon-list { display: flex; flex-direction: column; gap: 14px; }
.icon-list li { display: flex; gap: 12px; align-items: flex-start; }
.icon-list .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); margin-top: 9px; flex-shrink: 0; }

.notfound-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.notfound-wrap .hero-push-bar { margin: 18px auto 24px; }

.stat-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-row .stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--amber-dark);
}
.stat-row .stat span { color: var(--mist); font-size: 0.9rem; }

.format-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .format-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .format-list { grid-template-columns: 1fr; } }
