/* QuietMillion — style.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:    #f8f6f1;
  --ink:   #1a1916;
  --mid:   #6b6860;
  --faint: #65615c;   /* was #9a958d (2.76:1 — failed), then #6f6b64 (4.58:1 on the subscribe band — only 0.08 over the AA floor). Now 5.31:1 minimum everywhere, matching --gold's margin. */
  --rule:  #e2ddd6;
  --gold:  #7a5a12;   /* text + UI on paper — 5.89:1 on --bg, 5.50:1 on the subscribe band. Was #b8a98a (2.14:1 — failed AA). */
  --amber: #c8942a;   /* TQM Amber, the brand accent — for text on ink only (6.95:1). Reserved; no dark section exists yet. */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Jost', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 56px;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s;
}
nav.scrolled { border-color: var(--rule); }
.logo {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.05rem; letter-spacing: 0.05em;
  color: var(--ink); text-decoration: none;
}
.logo-dot { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color 0.3s;
}
.nav-link:hover { color: var(--ink); }

/* ── HERO ── */
.hero {
  padding-top: 78px;
  display: grid;
  grid-template-columns: 42fr 58fr;
  min-height: 78vh;
  max-height: 900px;
}
.hero-img-col {
  position: relative;
  overflow: hidden;
  background: #ede9e1;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 55% top;
  display: block;
  mix-blend-mode: multiply;
  opacity: 0.92;
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px 72px 52px;
  border-left: 1px solid var(--rule);
}
.hero-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  opacity: 0; animation: up 0.6s 0.1s forwards;
}
.hero-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 3.8vw, 4.4rem);
  line-height: 1.08; color: var(--ink);
  opacity: 0; animation: up 0.8s 0.25s forwards;
}
.hero-title em { font-style: italic; color: var(--ink); }
.hero-divider {
  width: 36px; height: 1px;
  background: var(--gold);
  margin: 28px 0;
  opacity: 0; animation: up 0.5s 0.4s forwards;
}
.hero-body {
  font-size: 0.97rem; line-height: 1.88; color: var(--mid);
  max-width: 380px;
  opacity: 0; animation: up 0.7s 0.5s forwards;
}
.hero-body--sub {
  margin-top: 16px;
  font-size: 0.86rem;
  animation-delay: 0.58s;
}
.hero-cta {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; font-weight: 500;
  opacity: 0; animation: up 0.6s 0.68s forwards;
  transition: gap 0.3s;
}
.hero-cta::after {
  content: ''; width: 40px; height: 1px;
  background: var(--ink); transition: width 0.3s;
}
.hero-cta:hover { gap: 22px; }
.hero-cta:hover::after { width: 56px; }

/* ── HERO AUDIO TRIGGER ── */
.hero-audio-trigger {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 12px;
  background: none; border: none; padding: 0;
  cursor: pointer;
  font-family: var(--sans);
  opacity: 0; animation: up 0.6s 0.78s forwards;
}
.hero-audio-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.hero-audio-icon svg { width: 12px; fill: var(--gold); transition: fill 0.3s; }
.hero-audio-trigger:hover .hero-audio-icon { background: var(--gold); }
.hero-audio-trigger:hover .hero-audio-icon svg { fill: var(--bg); }
.hero-audio-text {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mid); transition: color 0.3s;
}
.hero-audio-trigger:hover .hero-audio-text { color: var(--ink); }
.hero-audio-dur {
  color: var(--faint); letter-spacing: 0.16em;
  margin-left: 4px;
}
.hero-audio-wrap {
  margin-top: 18px;
  max-width: 380px;
  animation: up 0.4s forwards;
}
.hero-audio-wrap[hidden] { display: none; }
.hero-audio-player { width: 100%; height: 40px; }

/* ── SUBSCRIBE FORM ── */
.subscribe-form {
  margin-top: 36px;
  opacity: 0; animation: up 0.6s 0.65s forwards;
}
.subscribe-form--secondary {
  margin-top: 22px;
  animation-delay: 0.8s;
}
.subscribe-form--secondary .subscribe-label { color: var(--faint); font-size: 0.54rem; }
.subscribe-form--secondary .subscribe-row { max-width: 300px; }
.subscribe-label {
  display: block;
  font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 12px;
}
.subscribe-row {
  display: flex; gap: 0;
  border: 1px solid var(--rule);
  max-width: 340px;
  background: var(--bg);
  transition: border-color 0.3s;
}
.subscribe-row:focus-within { border-color: var(--gold); }
.subscribe-input {
  flex: 1;
  border: none; background: transparent;
  padding: 12px 16px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 300;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.subscribe-input::placeholder { color: var(--faint); }
.subscribe-btn {
  border: none; background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  font-family: var(--sans); font-size: 0.58rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.subscribe-btn:hover { background: var(--gold); }
.subscribe-note {
  margin-top: 8px;
  font-size: 0.58rem; color: var(--faint); letter-spacing: 0.06em;
}

/* ── HERO DOORS ── */
.hero-doors {
  margin-top: 36px;
  display: flex; align-items: center; gap: 36px;
  opacity: 0; animation: up 0.6s 0.8s forwards;
}
.hero-door {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; font-weight: 500;
  transition: gap 0.3s;
}
.hero-door::after {
  content: ''; width: 28px; height: 1px;
  background: var(--ink); transition: width 0.3s;
}
.hero-door:hover { gap: 20px; }
.hero-door:hover::after { width: 44px; }
.hero-about {
  margin-top: 20px;
  font-size: 0.78rem; font-style: italic; color: var(--faint);
  opacity: 0; animation: up 0.6s 0.9s forwards;
}
.hero-about a {
  color: var(--mid); text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color 0.3s, border-color 0.3s;
}
.hero-about a:hover { color: var(--ink); border-color: var(--gold); }

/* ── SECTION SHARED ── */
.section-head {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 52px;
}
.section-num { font-size: 0.56rem; letter-spacing: 0.26em; color: var(--faint); }
.section-title { font-family: var(--serif); font-weight: 400; font-size: 1.8rem; }
.section-rule { flex: 1; height: 1px; background: var(--rule); }
.section-action {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.3s, gap 0.3s;
}
.section-action::after {
  content: ''; width: 20px; height: 1px;
  background: currentColor; transition: width 0.3s;
}
.section-action:hover { color: var(--ink); gap: 14px; }
.section-action:hover::after { width: 32px; }

/* ── WRITING ── */
.writing {
  padding: 96px 56px;
  border-top: 1px solid var(--rule);
}
.essay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.essay-card {
  background: var(--bg);
  padding: 36px 32px;
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column;
  gap: 12px;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s, transform 0.5s, background 0.3s;
}
.essay-card.visible { opacity: 1; transform: none; }
.essay-card:hover { background: #f2efe8; }
.essay-date {
  font-size: 0.55rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--faint);
}
.essay-title {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.1rem; line-height: 1.35;
}
.essay-desc {
  font-size: 0.82rem; line-height: 1.7; color: var(--mid);
  flex: 1;
}
.essay-read {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint); display: flex; align-items: center; gap: 8px;
  transition: color 0.3s, gap 0.3s;
}
.essay-read::after {
  content: ''; width: 18px; height: 1px;
  background: currentColor; transition: width 0.3s;
}
.essay-card:hover .essay-read { color: var(--ink); gap: 14px; }
.essay-card:hover .essay-read::after { width: 28px; }
.essay-loading {
  padding: 48px 32px;
  font-size: 0.78rem; color: var(--faint); letter-spacing: 0.1em;
  grid-column: 1 / -1;
  background: var(--bg);
}
.essay-loading a { color: var(--mid); text-decoration: none; letter-spacing: 0.1em; }

/* Start Here — reuses .essay-card structure with sentence-style prompt instead of a date */
.start-prompt {
  font-size: 0.86rem; letter-spacing: 0.01em; text-transform: none;
  font-style: italic; color: var(--mid); line-height: 1.5;
}
.start-lede {
  margin-top: 32px;
  font-size: 0.86rem; font-style: italic; color: var(--mid);
  max-width: 560px; line-height: 1.6;
}

/* Working Ground — same essay-card structure, distinguished by a left accent (fieldwork, not analysis) plus an explicit kicker (color alone isn't enough signal) */
.wg-intro {
  font-size: 0.86rem; color: var(--mid);
  max-width: 560px; line-height: 1.6;
  margin-bottom: 40px;
}
.card-kicker {
  font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 2px;
}
.essay-card.wg .card-kicker { color: var(--gold); }
.essay-grid.wg .essay-card,
.essay-card.wg { border-left: 2px solid var(--gold); }
.essay-grid.wg .essay-read,
.essay-card.wg .essay-read { color: var(--gold); }
.essay-grid.wg .essay-card:hover .essay-read,
.essay-card.wg:hover .essay-read { color: var(--ink); }

/* Mixed 2 TQM + 2 WG row */
.essay-grid.mixed { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) and (min-width: 821px) {
  .essay-grid.mixed { grid-template-columns: repeat(2, 1fr); }
}

/* Compact recent-essays list — same live feed, much lighter footprint than a full card grid */
.essay-grid.compact {
  display: flex; flex-direction: column;
  border: none; background: none;
  margin-top: 40px;
  border-top: 1px solid var(--rule);
}
.essay-grid.compact .essay-card {
  flex-direction: row; align-items: baseline; gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  background: none;
}
.essay-grid.compact .essay-card:hover { background: none; }
.essay-grid.compact .essay-card:hover .essay-title { color: var(--gold); }
.essay-grid.compact .essay-date {
  flex-shrink: 0; width: 130px;
  font-size: 0.56rem;
}
.essay-grid.compact .essay-title {
  flex: 1; font-size: 0.9rem; margin-bottom: 0;
  transition: color 0.3s;
}
.essay-grid.compact .essay-desc { display: none; }
.essay-grid.compact .essay-read { flex-shrink: 0; }
.essay-grid.compact .essay-loading { padding: 16px 0; grid-column: unset; }

/* ── PRODUCTS ── */
.products {
  padding: 96px 56px;
  border-top: 1px solid var(--rule);
}
.product-group { margin-bottom: 64px; }
.product-group:last-of-type { margin-bottom: 0; }
.product-group-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 8px;
}
.product-group-title {
  font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold);
}
.product-group-rule { flex: 1; height: 1px; background: var(--rule); }
.product-note {
  font-size: 0.78rem; font-style: italic; color: var(--faint);
  margin: 24px 0 4px;
  cursor: pointer; list-style: none; display: inline-block;
  transition: color 0.3s;
}
.product-note::-webkit-details-marker { display: none; }
.product-note:hover { color: var(--mid); }
details.product-more[open] .product-note { color: var(--mid); margin-bottom: 12px; }
details.product-more .product-row:first-of-type { border-top: none; }
.product-row {
  display: grid;
  grid-template-columns: 44px 200px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s, transform 0.5s;
}
.product-row:first-of-type { border-top: 1px solid var(--rule); }
.product-row.visible { opacity: 1; transform: none; }
.product-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--bg);
  font-size: 0.78rem;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.product-row:hover .product-icon { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.product-type {
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint);
  transition: color 0.3s;
}
.product-row:hover .product-type { color: var(--mid); }
.product-body .product-title {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 400; margin-bottom: 4px;
}
.product-body .product-desc {
  font-size: 0.84rem; line-height: 1.65; color: var(--mid);
}
.product-action {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint); display: flex; align-items: center; gap: 10px;
  white-space: nowrap; transition: color 0.3s, gap 0.3s;
}
.product-action::after {
  content: ''; width: 26px; height: 1px;
  background: currentColor; transition: width 0.3s;
}
.product-row:hover .product-action { color: var(--ink); gap: 16px; }
.product-row:hover .product-action::after { width: 40px; }

/* ── ABOUT ── */
.about {
  padding: 96px 56px;
  border-top: 1px solid var(--rule);
}
.about-body {
  max-width: 640px;
}
.about-body p {
  font-size: 0.92rem; line-height: 1.85; color: var(--mid);
  margin-bottom: 22px;
}
.about-questions {
  font-family: var(--serif); font-style: italic;
  color: var(--ink); font-size: 1rem;
}
.about-close {
  color: var(--ink); font-weight: 500;
  margin-bottom: 0 !important;
}

/* ── LISTEN ── */
.listen {
  padding: 96px 56px;
  border-top: 1px solid var(--rule);
}
.listen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.listen-eyebrow {
  display: block;
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.listen-lede {
  font-size: 0.92rem; line-height: 1.8; color: var(--mid);
  margin-bottom: 24px;
  max-width: 440px;
}
.listen-player { width: 100%; height: 40px; }
.listen-show {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none; color: var(--ink);
  transition: padding-left 0.3s;
}
.listen-shows .listen-show:first-of-type { border-top: 1px solid var(--rule); }
.listen-show:hover { padding-left: 8px; }
.listen-show-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.listen-show-icon svg { width: 18px; fill: var(--bg); }
.listen-show:hover .listen-show-icon { background: var(--gold); border-color: var(--gold); }
.listen-show-label {
  flex: 1;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 400;
}
.listen-show-arrow {
  color: var(--faint); font-size: 1rem;
  transition: color 0.3s, transform 0.3s;
}
.listen-show:hover .listen-show-arrow { color: var(--ink); transform: translateX(4px); }

/* ── SUBSCRIBE SECTION ── */
.subscribe-section {
  padding: 88px 56px;
  border-top: 1px solid var(--rule);
  background: #f2eee6;
}
.subscribe-inner {
  max-width: 560px;
}
.subscribe-eyebrow {
  display: block;
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.subscribe-heading {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.15; color: var(--ink);
  margin-bottom: 28px;
}
.subscribe-section .subscribe-row {
  max-width: 460px;
}
.subscribe-section .subscribe-note {
  margin-top: 14px;
}

/* ── CHANNELS ── */
.channels {
  padding: 96px 56px;
  border-top: 1px solid var(--rule);
}
.ch-row {
  display: grid;
  grid-template-columns: 44px 180px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s, transform 0.5s;
}
.ch-row:first-of-type { border-top: 1px solid var(--rule); }
.ch-row.visible { opacity: 1; transform: none; }
.ch-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--bg);
  transition: background 0.3s, border-color 0.3s;
}
.ch-row:hover .ch-icon { background: var(--ink); border-color: var(--ink); }
.ch-icon.yt svg { fill: #FF0000; width: 17px; transition: fill 0.3s; }
.ch-row:hover .ch-icon.yt svg { fill: #fff; }
.ch-icon.tt svg { fill: var(--ink); width: 14px; transition: fill 0.3s; }
.ch-row:hover .ch-icon.tt svg { fill: #fff; }
.ch-icon.xw svg { fill: var(--ink); width: 14px; transition: fill 0.3s; }
.ch-row:hover .ch-icon.xw svg { fill: #fff; }
.ch-icon.li svg { fill: #0A66C2; width: 16px; transition: fill 0.3s; }
.ch-row:hover .ch-icon.li svg { fill: #fff; }
.ch-platform {
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint);
  transition: color 0.3s;
}
.ch-row:hover .ch-platform { color: var(--mid); }
.ch-body .ch-title {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 400; margin-bottom: 4px;
}
.ch-body .ch-desc {
  font-size: 0.84rem; line-height: 1.65; color: var(--mid);
}
.ch-action {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint); display: flex; align-items: center; gap: 10px;
  white-space: nowrap; transition: color 0.3s, gap 0.3s;
}
.ch-action::after {
  content: ''; width: 26px; height: 1px;
  background: currentColor; transition: width 0.3s;
}
.ch-row:hover .ch-action { color: var(--ink); gap: 16px; }
.ch-row:hover .ch-action::after { width: 40px; }

/* Ambient channel row — X + YouTube, genuinely light footer-style presence */
.ch-lede {
  font-size: 0.86rem; font-style: italic; color: var(--mid);
  max-width: 480px; line-height: 1.6;
  margin-bottom: 32px;
}

/* Compact channel icons — labeled, not icon-only */
.ch-compact { display: flex; gap: 28px; }
.ch-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none;
}
.ch-icon-circle {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.ch-item:hover .ch-icon-circle { background: var(--ink); border-color: var(--ink); }
.ch-icon-circle svg { width: 15px; fill: var(--mid); transition: fill 0.3s; }
.ch-item:hover .ch-icon-circle svg { fill: var(--bg); }
.ch-item-label {
  font-size: 0.54rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint); transition: color 0.3s;
}
.ch-item:hover .ch-item-label { color: var(--mid); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--rule);
  padding: 30px 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: var(--serif); font-size: 0.88rem; color: var(--faint); }
.footer-copy { font-size: 0.58rem; letter-spacing: 0.14em; color: var(--faint); }   /* was var(--rule) — a border token used as text, 1.25:1 */

/* Reveal helper */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ── MOBILE ── */
@media (max-width: 820px) {
  nav { padding: 18px 24px; }
  .nav-links { gap: 20px; }
  .hero { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .hero-doors { gap: 24px; flex-wrap: wrap; }
  .hero-img-col { height: 62vw; max-height: 360px; }
  .hero-text-col { padding: 44px 24px 56px; border-left: none; border-top: 1px solid var(--rule); }
  .subscribe-row { max-width: 100%; }
  .writing, .products, .channels, .about, .subscribe-section, .listen { padding: 64px 24px; }
  .listen-grid { grid-template-columns: 1fr; gap: 44px; }
  .essay-grid, .essay-grid.mixed { grid-template-columns: 1fr; }
  .essay-card { padding: 28px 24px; }
  .ch-row, .product-row {
    grid-template-columns: 40px 1fr;
    gap: 12px 14px; padding: 22px 0;
  }
  .ch-platform, .product-type { grid-column: 2; }
  .ch-body, .product-body { grid-column: 1 / -1; }
  .ch-action, .product-action { display: none; }
  footer { padding: 24px; flex-direction: column; gap: 8px; }
}
