/* ==================================================================
   car_detail_page.css
   ------------------------------------------------------------------
   Central stylesheet for the single-car detail page template.
   Location: assets/car_detail_page.css (relative to the stub file)
   ================================================================== */

:root {
  --bg:          #fbf7f0;
  --bg-soft:     #f4ede0;
  --paper:       #ffffff;
  --ink:         #1c1a17;
  --ink-soft:    #4a433a;
  --mute:        #8e867a;
  --line:        #e8e0d0;
  --line-soft:   #f0e9da;
  --accent:      #c04a2a;
  --accent-soft: #f3dfd4;
  --ok:          #4a7a3e;
  --ok-soft:     #e3eed9;
  --warn:        #9b6a1f;
  --warn-soft:   #f5e7c9;
  --dark:        #1c1a17;
  --radius-lg:   20px;
  --radius-md:   14px;
  --radius-sm:   10px;
  --shadow-soft: 0 1px 2px rgba(28,26,23,0.04), 0 8px 24px rgba(28,26,23,0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.wrap { width: min(calc(100% - 40px), 1240px); margin: 0 auto; }

/* ——— HEADER ——— */
.site-header {
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.brand .dot { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: background 0.2s, color 0.2s;
}
.nav a:hover { background: var(--bg-soft); color: var(--ink); }
.nav a.active { background: var(--ink); color: var(--bg); }
.header-cta {
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.15s;
}
.header-cta:hover { background: #a93d20; }

/* ——— BREADCRUMB ——— */
.breadcrumb {
  padding: 32px 0 0;
  font-size: 13px;
  color: var(--mute);
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--line); }

/* ——— HERO ——— */
.hero {
  padding: 24px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.chip.primary {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: transparent;
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.02;
  font-weight: 500;
}
.hero-lead {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 22px 0 30px;
  line-height: 1.6;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  padding: 13px 24px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  transition: background 0.15s;
}
.btn-primary:hover { background: #36312b; }
.btn-ghost {
  padding: 13px 22px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  transition: background 0.15s;
}
.btn-ghost:hover { background: var(--bg-soft); }
.btn-link {
  padding: 13px 8px;
  color: var(--ink);
  font-weight: 500;
  font-size: 14.5px;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  transition: color 0.15s, border-color 0.15s;
}
.btn-link:hover { color: var(--accent); border-color: var(--accent); }

.hero-image {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mute);
  font-style: italic;
  font-family: 'Fraunces', serif;
}

/* ——— VERDICT SECTION ——— */
.verdict {
  padding: 40px 0;
}
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.verdict-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.verdict-card.soft {
  background: var(--bg-soft);
  border: none;
}
.kicker {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.verdict-card h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 18px;
}
.verdict-card h2 .ital { font-style: italic; color: var(--accent); }
.flag {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  font-size: 14.5px;
  line-height: 1.5;
}
.flag:last-child { margin-bottom: 0; }
.flag::before {
  content: "";
  width: 6px;
  border-radius: 3px;
  flex-shrink: 0;
}
.flag.good {
  background: var(--ok-soft);
  color: #2d4d25;
}
.flag.good::before { background: var(--ok); }
.flag.warn {
  background: var(--warn-soft);
  color: #5c3f10;
}
.flag.warn::before { background: var(--warn); }

/* Core fit list */
.fit-list {
  display: flex;
  flex-direction: column;
}
.fit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.fit-row:last-child { border-bottom: none; }
.fit-row span { color: var(--ink-soft); }
.fit-row strong {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 15px;
  font-style: italic;
}
.fit-row strong.good { color: var(--ok); }
.fit-row strong.weak { color: var(--mute); }

/* ——— SECTION TITLE ——— */
.section { padding: 48px 0 10px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-title {
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.05;
  font-weight: 500;
}
.section-title .ital { font-style: italic; color: var(--accent); }
.section-sub {
  color: var(--ink-soft);
  margin-top: 8px;
  font-size: 15.5px;
  max-width: 520px;
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.15s;
}
.link-more:hover { background: var(--bg-soft); }

/* ——— RIGHT-FOR-YOU ——— */
.rfy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.rfy-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.rfy-card.best { border-top: 3px solid var(--ok); }
.rfy-card.less { border-top: 3px solid var(--warn); }
.rfy-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
}
.rfy-card h3 .ital { font-style: italic; }
.rfy-card.best h3 .ital { color: var(--ok); }
.rfy-card.less h3 .ital { color: var(--warn); }
.rfy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rfy-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  border-bottom: 1px solid var(--line-soft);
}
.rfy-list li:last-child { border-bottom: none; }
.rfy-list li::before {
  position: absolute;
  left: 0;
  top: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16px;
}
.rfy-card.best .rfy-list li::before {
  content: "+";
  color: var(--ok);
}
.rfy-card.less .rfy-list li::before {
  content: "−";
  color: var(--warn);
}

/* ——— FACTS (elegant editorial table) ——— */
.facts-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.facts-wrap h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 24px;
}
.facts-wrap h2 .ital { font-style: italic; color: var(--accent); }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.fact {
  background: var(--paper);
  padding: 20px 22px;
}
.fact .lbl {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 6px;
}
.fact .val {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.15;
}
.facts-foot {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.lineup-row {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.lineup-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lineup-row span b {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--ink);
  font-style: italic;
}

/* ——— STANDS OUT (rankings) ——— */
.stands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stand-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.stand-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.rank-badge {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}
.rank-badge .num {
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
}
.stand-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.stand-card p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0;
}

/* ——— ALTERNATIVES ——— */
.alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.alt-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.alt-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.alt-kicker {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.alt-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.2;
}
.alt-card p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 20px;
  flex: 1;
}
.alt-card .btn-ghost {
  padding: 10px 18px;
  font-size: 13.5px;
  align-self: flex-start;
}

/* ——— BOTTOM LINK LISTS ——— */
.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bottom-grid.bottom-grid-single {
  grid-template-columns: 1fr;
}
.link-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.link-panel h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}
.link-panel h3 .ital { font-style: italic; color: var(--accent); }
.link-panel p {
  color: var(--mute);
  font-size: 13.5px;
  margin: 0 0 18px;
}
.link-list {
  display: flex;
  flex-direction: column;
}
.link-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--ink);
  transition: color 0.15s, padding 0.15s;
}
.link-row:last-child { border-bottom: none; }
.link-row:hover {
  color: var(--accent);
  padding-left: 6px;
}
.link-row .arr {
  color: var(--mute);
  transition: transform 0.15s, color 0.15s;
}
.link-row:hover .arr {
  color: var(--accent);
  transform: translateX(3px);
}

/* ——— FOOTER ——— */
.site-foot {
  margin-top: 70px;
  padding: 40px 0 30px;
  border-top: 1px solid var(--line);
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-links {
  display: flex;
  gap: 24px;
}
.foot-links a {
  color: var(--ink-soft);
  font-size: 14px;
  transition: color 0.15s;
}
.foot-links a:hover { color: var(--accent); }
.legal {
  color: var(--mute);
  font-size: 13px;
}

/* ——— COLLAPSIBLE SECTIONS (specs, videos, facebook) ——— */
.collapse-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.collapse-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  transition: background 0.15s;
}
.collapse-head::-webkit-details-marker { display: none; }
.collapse-head:hover { background: var(--bg-soft); }
.collapse-head .section-title {
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.1;
  font-weight: 500;
  margin: 0;
}
.collapse-head .section-title .ital { font-style: italic; color: var(--accent); }
.collapse-hint {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mute);
  font-weight: 500;
  flex-shrink: 0;
  position: relative;
  padding-right: 18px;
}
.collapse-hint::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.2s;
}
details[open] .collapse-hint::after { content: "−"; }
details[open] .collapse-hint { color: var(--accent); }
.collapse-body {
  padding: 4px 28px 28px;
  border-top: 1px solid var(--line-soft);
}

/* ——— INLINE "SHOW MORE SPECS" EXPANDER (inside Core Facts card) ——— */
.facts-more {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.facts-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  width: fit-content;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.facts-more-btn::-webkit-details-marker { display: none; }
.facts-more-btn:hover {
  background: var(--bg-soft);
  color: var(--accent);
  border-color: var(--accent-soft);
}
.facts-more-label-open { display: none; }
.facts-more-chev {
  font-size: 13px;
  color: var(--accent);
  transition: transform 0.2s;
  line-height: 1;
}
.facts-more[open] .facts-more-label-closed { display: none; }
.facts-more[open] .facts-more-label-open   { display: inline; }
.facts-more[open] .facts-more-chev         { transform: rotate(180deg); }
.facts-more-body {
  width: 100%;
  align-self: stretch;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

/* ——— SPECS GRID (used inside facts-more-body and the standalone collapsibles) ——— */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 36px;
  padding-top: 0;
}
.specs-group-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.specs-list {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 18px;
}
.specs-list dt {
  color: var(--ink-soft);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}
.specs-list dd {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  text-align: right;
}

/* ——— VIDEOS GRID ——— */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding-top: 22px;
}
.video-card {
  display: flex;
  flex-direction: column;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 6px;
}
.video-desc {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ——— FACEBOOK COMMUNITIES LIST ——— */
.fb-list {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}
.fb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.15s, padding 0.15s;
}
.fb-row:last-child { border-bottom: none; }
.fb-row:hover {
  color: var(--accent);
  padding-left: 6px;
}
.fb-row-main { flex: 1; min-width: 0; }
.fb-row-title {
  font-size: 15.5px;
  font-weight: 500;
  margin: 0 0 4px;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.15s;
}
.fb-row:hover .fb-row-title { color: var(--accent); }
.fb-row-desc {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fb-row-arr {
  color: var(--mute);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.15s, color 0.15s;
}
.fb-row:hover .fb-row-arr {
  color: var(--accent);
  transform: translateX(3px);
}

/* ——— MORE CONTENT FOR THIS CAR ——— */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.content-more-body {
  width: 100%;
  align-self: stretch;
  margin-top: 18px;
}
.content-grid-tail {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.content-grid-tail .content-card {
  /* Match the 3-column width of head grid: (container - 2 gaps) / 3 */
  flex: 0 0 calc((100% - 36px) / 3);
  max-width: calc((100% - 36px) / 3);
}
.content-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent-soft);
  border-radius: var(--radius-lg);
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-top-color 0.2s;
  color: inherit;
}
.content-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-top-color: var(--accent);
}
.content-title {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1.2;
}
.content-teaser {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.content-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line);
  align-self: flex-start;
  transition: color 0.15s, border-color 0.15s, transform 0.15s;
}
.content-card:hover .content-cta {
  color: var(--accent);
  border-color: var(--accent);
}
.content-cta .arr { transition: transform 0.15s; }
.content-card:hover .content-cta .arr { transform: translateX(3px); }

/* Show-more expander for content — reuses facts-more visual language */
.content-more {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.content-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  width: fit-content;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.content-more-btn::-webkit-details-marker { display: none; }
.content-more-btn:hover {
  background: var(--bg-soft);
  color: var(--accent);
  border-color: var(--accent-soft);
}
.content-more-label-open { display: none; }
.content-more-chev {
  font-size: 13px;
  color: var(--accent);
  transition: transform 0.2s;
  line-height: 1;
}
.content-more[open] .content-more-label-closed { display: none; }
.content-more[open] .content-more-label-open   { display: inline; }
.content-more[open] .content-more-chev         { transform: rotate(180deg); }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .verdict-grid, .rfy-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .stands-grid, .alt-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid-tail .content-card { flex: 1 1 100%; max-width: 100%; }
  .bottom-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 28px; }
  .videos-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}
@media (max-width: 560px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 16px 0 32px; }
  .facts-wrap { padding: 22px; }
  .collapse-head { padding: 18px 20px; }
  .collapse-body { padding: 4px 20px 22px; }
  .specs-grid { grid-template-columns: 1fr; gap: 22px; }
}
