/* Funthrum — broadside.css
   Visual DNA: periwinkle canvas, carbon-ink panels, paper-white plates,
   one signal-green accent. Monumental display type + a quiet grotesque
   workhorse. Flat surfaces, no shadows, no gradients on the canvas itself. */

@font-face {
  font-family: "Anton Local";
  src: url("/assets/fonts/anton-latin-400.woff2?v=1") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grotesk Local";
  src: url("/assets/fonts/space-grotesk-latin-var.woff2?v=1") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --fth-canvas: #8e93ff;
  --fth-canvas-soft: #eef0ff;
  --fth-ink: #1a1a1a;
  --fth-paper: #ffffff;
  --fth-signal: #47f654;
  --fth-signal-ink: #0f3d14;
  --fth-line: rgba(26, 26, 26, 0.14);

  --fth-font-display: "Anton Local", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  --fth-font-body: "Grotesk Local", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fth-gap-xs: 8px;
  --fth-gap-sm: 14px;
  --fth-gap-md: 24px;
  --fth-gap-lg: 40px;
  --fth-gap-xl: 72px;
  --fth-gap-xxl: 112px;

  --fth-container: 1180px;
  --fth-radius-pill: 999px;

  --fth-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--fth-canvas);
  color: var(--fth-ink);
  font-family: var(--fth-font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, dl, dd, figure, p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
table { border-collapse: collapse; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 3px solid var(--fth-ink);
  outline-offset: 3px;
  border-radius: 2px;
}
.fth-stage :focus-visible,
.fth-panel :focus-visible,
.fth-foot :focus-visible {
  outline-color: var(--fth-signal);
}

/* ---------- layout helpers ---------- */
.fth-section {
  max-width: var(--fth-container);
  margin-inline: auto;
  padding: var(--fth-gap-xl) var(--fth-gap-md);
}
.fth-section--panel {
  max-width: none;
  background: var(--fth-ink);
  color: var(--fth-paper);
}
.fth-section--panel > * {
  max-width: var(--fth-container);
  margin-inline: auto;
}
.fth-section--panel .fth-section__head :is(h2, p) { color: var(--fth-paper); }
.fth-section__head { max-width: 68ch; margin-bottom: var(--fth-gap-lg); }
.fth-section__head--hub { max-width: none; }
.fth-section__head p { margin-top: var(--fth-gap-sm); }
.fth-section__title {
  font-family: var(--fth-font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: 0.2px;
}
.fth-section__title--h1 { font-size: clamp(34px, 6vw, 56px); margin-bottom: var(--fth-gap-sm); }

.fth-page { overflow-x: clip; }
.fth-page--home #main { display: block; }

/* ---------- reveal-on-scroll ----------
   Visible by default (no-JS, crawlers, reduced motion). The hidden
   pre-reveal state is opt-in, added only once pressroom.js confirms it can
   manage it - see the html.fth-js gate below. Transform-only (no opacity):
   an opacity fade would let the periwinkle canvas show through a card's own
   white background mid-transition, which briefly wrecks text contrast for
   anything auditing that exact frame - a slide has no such effect, since
   the card is fully opaque at every point of the animation. */
.fth-reveal, .fth-tile, .fth-shelf__card, .fth-rank {
  transition: transform 0.5s var(--fth-ease);
}
html.fth-js .fth-reveal:not(.is-visible),
html.fth-js .fth-tile:not(.is-visible),
html.fth-js .fth-shelf__card:not(.is-visible),
html.fth-js .fth-rank:not(.is-visible) {
  transform: translateY(22px);
}

/* ---------- buttons (pill family, fill / ghost / sm) ---------- */
.fth-knob {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--fth-radius-pill);
  padding: 13px 26px;
  font-family: var(--fth-font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  min-height: 48px;
  border: 2px solid transparent;
  transition: transform 0.18s var(--fth-ease), background-color 0.18s var(--fth-ease), border-color 0.18s var(--fth-ease), box-shadow 0.18s var(--fth-ease);
  text-decoration: none;
}
.fth-knob--fill {
  background: var(--fth-signal);
  color: var(--fth-signal-ink);
  box-shadow: 4px 4px 0 0 var(--fth-ink);
}
.fth-knob--fill:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--fth-ink); }
.fth-knob--fill:active { transform: translate(0, 0); box-shadow: 2px 2px 0 0 var(--fth-ink); }
.fth-knob--ghost {
  background: transparent;
  color: var(--fth-ink);
  border-color: var(--fth-ink);
}
.fth-knob--ghost:hover { background: var(--fth-ink); color: var(--fth-paper); }
.fth-stage .fth-knob--ghost { color: var(--fth-paper); border-color: var(--fth-paper); }
.fth-stage .fth-knob--ghost:hover { background: var(--fth-paper); color: var(--fth-ink); }
.fth-knob--lg { padding: 16px 32px; font-size: 16px; }
.fth-knob--sm { padding: 9px 18px; min-height: 40px; font-size: 13.5px; }

.fth-totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  padding: 0;
  justify-content: center;
  border-radius: 999px;
  z-index: 40;
}
.fth-totop[hidden] { display: none; }
.fth-arrow--up { transform: none; }

/* ---------- badges ---------- */
.fth-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  border-radius: var(--fth-radius-pill);
  font-weight: 700;
  line-height: 1;
}
.fth-badge--score {
  background: var(--fth-ink);
  color: var(--fth-signal);
  padding: 7px 12px;
  font-size: 14px;
}
.fth-badge__of { font-weight: 500; font-size: 11px; }
.fth-badge--pill {
  background: var(--fth-canvas-soft);
  color: var(--fth-ink);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--fth-canvas);
}

.fth-stars { color: var(--fth-signal-ink); display: inline-flex; }
.fth-check { color: #1a7a2c; flex: none; margin-top: 3px; }
.fth-cross { color: #9a2f2f; flex: none; margin-top: 3px; }

/* ---------- nav ---------- */
.fth-nav { background: var(--fth-paper); position: relative; z-index: 30; }
.fth-nav__bar {
  max-width: var(--fth-container);
  margin-inline: auto;
  padding: 18px var(--fth-gap-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--fth-gap-md);
}
.fth-nav__brand {
  font-family: var(--fth-font-display);
  font-size: 22px;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--fth-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.fth-nav__mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--fth-ink);
  color: var(--fth-signal);
  font-size: 16px;
}
.fth-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
}
.fth-burger__bar { display: block; width: 22px; height: 2px; background: var(--fth-ink); margin-inline: auto; transition: transform 0.2s var(--fth-ease), opacity 0.2s var(--fth-ease); }
.fth-nav__list { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.fth-nav__link {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--fth-ink);
  transition: background-color 0.18s var(--fth-ease);
}
.fth-nav__link:hover { background: var(--fth-canvas-soft); }
.fth-nav__link[aria-current="page"] { background: var(--fth-ink); color: var(--fth-signal); }

@media (max-width: 860px) {
  .fth-burger { display: inline-flex; }
  .fth-nav__menu {
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--fth-paper);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s var(--fth-ease);
    box-shadow: 0 12px 0 0 var(--fth-canvas-soft);
  }
  .fth-nav__menu.is-open { max-height: 420px; }
  .fth-nav__list { flex-direction: column; align-items: stretch; padding: var(--fth-gap-sm) var(--fth-gap-md) var(--fth-gap-md); gap: 2px; }
  .fth-nav__link { padding: 14px 20px; border-radius: var(--fth-radius-pill); }
}

/* ---------- breadcrumbs ---------- */
.fth-crumb { max-width: var(--fth-container); margin-inline: auto; padding: 0 var(--fth-gap-md); }
.fth-crumb__list { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 14px 0; font-size: 13px; }
.fth-crumb__item a { text-decoration: none; color: var(--fth-ink); }
.fth-crumb__item a:hover { text-decoration: underline; }
.fth-crumb__item[aria-current="page"] { font-weight: 700; }
.fth-crumb__sep { opacity: 0.5; }

/* ---------- hero / stage ---------- */
.fth-stage {
  position: relative;
  color: var(--fth-paper);
  overflow: hidden;
  padding: var(--fth-gap-xxl) var(--fth-gap-md);
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 78vh;
}
.fth-stage__bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.fth-stage__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.72) 55%, rgba(26,26,26,0.88) 100%);
}
.fth-stage__inner { max-width: 760px; display: flex; flex-direction: column; align-items: center; gap: var(--fth-gap-sm); }
.fth-stage__eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--fth-signal);
}
.fth-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--fth-ink);
  display: block;
  margin-bottom: 6px;
}
.fth-section--panel .fth-eyebrow { color: var(--fth-paper); }
.fth-stage__h1 {
  font-family: var(--fth-font-display);
  font-weight: 400;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 1.04;
  margin: 6px 0 4px;
}
.fth-stage__lead { font-size: clamp(16px, 2.4vw, 19px); max-width: 56ch; opacity: 0.94; }
.fth-stage__actions { display: flex; flex-wrap: wrap; gap: var(--fth-gap-sm); justify-content: center; margin-top: var(--fth-gap-sm); }
.fth-stage--404 { min-height: 70vh; background: var(--fth-ink); }
.fth-stage--404 .fth-stage__scrim, .fth-stage--404 .fth-stage__bgimg { display: none; }

/* ---------- genre shelf ---------- */
.fth-shelf { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--fth-gap-md); }
.fth-shelf__card { background: var(--fth-paper); }
.fth-shelf__link { display: flex; flex-direction: column; gap: 10px; padding: var(--fth-gap-lg); text-decoration: none; color: var(--fth-ink); height: 100%; }
.fth-shelf__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fth-ink); }
.fth-shelf__title { font-family: var(--fth-font-display); font-weight: 400; font-size: clamp(24px, 3vw, 32px); }
.fth-shelf__note { opacity: 0.8; font-size: 15px; }
.fth-shelf__thumbs { display: flex; gap: 8px; margin-top: 4px; }
.fth-shelf__thumbs img { width: 52px; height: 52px; object-fit: cover; border: 2px solid var(--fth-canvas-soft); }
.fth-shelf__cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; margin-top: auto; padding-top: 10px; }
.fth-shelf__link:hover .fth-shelf__cta { text-decoration: underline; }

@media (max-width: 720px) { .fth-shelf { grid-template-columns: 1fr; } }

/* ---------- game cards ---------- */
.fth-pick__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--fth-gap-md);
  align-items: stretch;
}
.fth-tile { background: var(--fth-paper); }
.fth-tile--wide { grid-column: span 2; }
@media (max-width: 640px) { .fth-tile--wide { grid-column: span 1; } }
.fth-tile__link { display: flex; gap: 16px; padding: 18px; text-decoration: none; color: var(--fth-ink); height: 100%; }
.fth-tile--wide .fth-tile__link { flex-direction: row; }
.fth-tile__frame { flex: none; width: 84px; height: 84px; overflow: hidden; background: var(--fth-canvas-soft); }
.fth-tile__img { width: 100%; height: 100%; object-fit: cover; }
.fth-tile__body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.fth-tile__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.fth-tile__title { font-weight: 700; font-size: 16px; line-height: 1.3; }
.fth-tile__genre { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--fth-ink); font-weight: 700; }
.fth-tile__verdict { font-size: 14px; opacity: 0.82; line-height: 1.5; }
.fth-tile__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: auto; padding-top: 6px; }
.fth-tile__rating { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--fth-ink); }

/* ---------- comparison tables ---------- */
.fth-plate { background: var(--fth-paper); padding: var(--fth-gap-md); }
.fth-glance__scroll { overflow-x: auto; }
.fth-glance__table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.fth-glance__table caption { text-align: left; font-weight: 700; padding-bottom: 14px; font-size: 15px; }
.fth-glance__table th, .fth-glance__table td { text-align: left; padding: 12px 12px; vertical-align: top; }
.fth-glance__table th[scope="row"], .fth-glance__table td:last-child { white-space: nowrap; }
.fth-glance__table thead th { border-bottom: 2px solid var(--fth-ink); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.6px; }
.fth-glance__table tbody tr:nth-child(even) { background: var(--fth-canvas-soft); }
.fth-glance__table tbody th { font-weight: 700; }
.fth-glance__table tbody th a { text-decoration: none; }
.fth-glance__table tbody th a:hover { text-decoration: underline; }
.fth-glance__note { margin-top: 14px; font-size: 13.5px; opacity: 0.75; max-width: 70ch; }

/* ---------- FAQ ---------- */
.fth-quiz__group { display: flex; flex-direction: column; gap: 2px; }
.fth-quiz { background: rgba(255,255,255,0.06); }
.fth-section:not(.fth-section--panel) .fth-quiz { background: var(--fth-paper); }
.fth-quiz__q {
  font-family: var(--fth-font-body);
  font-weight: 700;
  font-size: 16.5px;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.fth-quiz__q::after {
  content: "+";
  font-family: var(--fth-font-display);
  font-size: 22px;
  flex: none;
  transition: transform 0.2s var(--fth-ease);
}
.fth-quiz.is-open .fth-quiz__q::after { transform: rotate(45deg); }
.fth-quiz__a { padding: 0 22px 20px; font-size: 15px; opacity: 0.9; max-width: 78ch; }
.fth-quiz__a a { color: inherit; text-decoration: underline; }

/* ---------- review page ---------- */
.fth-review { background: var(--fth-paper); padding: var(--fth-gap-lg); display: flex; flex-direction: column; gap: var(--fth-gap-lg); }
.fth-review__head { display: flex; flex-direction: column; gap: 10px; }
.fth-review__verdict { font-size: 19px; font-weight: 600; max-width: 62ch; line-height: 1.5; }
.fth-review__scoreline { display: flex; align-items: center; gap: 10px; font-size: 13px; opacity: 0.7; margin-top: 4px; }
.fth-review__updated { font-size: 13px; color: #595959; }
.fth-review__media { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--fth-gap-sm); }
.fth-review__shot { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; background: var(--fth-canvas-soft); }
.fth-review__section h2 { font-family: var(--fth-font-display); font-weight: 400; font-size: 24px; margin-bottom: 10px; }
.fth-review__section p { max-width: 72ch; margin-bottom: 12px; }
.fth-review__section p:last-child { margin-bottom: 0; }
.fth-review--legal .fth-review__section p { max-width: none; }

.fth-facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 4px 24px; background: var(--fth-canvas-soft); padding: var(--fth-gap-md); }
.fth-facts__row { display: flex; flex-direction: column; gap: 2px; padding: 10px 0; }
.fth-facts dt { font-size: 12px; text-transform: uppercase; letter-spacing: 0.6px; color: #595959; font-weight: 700; }
.fth-facts dd { font-size: 15px; font-weight: 600; }

.fth-verdict__proscons { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--fth-gap-md); }
.fth-verdict__col h2 { font-family: var(--fth-font-display); font-weight: 400; font-size: 21px; margin-bottom: 12px; }
.fth-verdict__list { display: flex; flex-direction: column; gap: 10px; }
.fth-verdict__list li { display: flex; gap: 10px; font-size: 15px; line-height: 1.5; }

.fth-similar { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: var(--fth-gap-sm); }
.fth-similar__card { background: rgba(255,255,255,0.08); padding: 14px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; text-decoration: none; color: inherit; }
.fth-similar__card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.fth-similar__title { font-weight: 700; font-size: 14px; }

/* ---------- listicle ---------- */
.fth-rank__list { display: flex; flex-direction: column; gap: var(--fth-gap-sm); }
.fth-rank { background: var(--fth-paper); display: flex; gap: var(--fth-gap-md); padding: var(--fth-gap-md); align-items: flex-start; }
.fth-rank__num { font-family: var(--fth-font-display); font-size: 40px; line-height: 1; color: var(--fth-canvas); flex: none; width: 56px; }
.fth-rank__body h2 { font-size: 19px; margin-bottom: 8px; }
.fth-rank__body h2 a { text-decoration: none; }
.fth-rank__body h2 a:hover { text-decoration: underline; }
.fth-rank__body p { max-width: 68ch; margin-bottom: 12px; opacity: 0.9; }

/* ---------- about / contact / sitemap ---------- */
.fth-contact__box { display: inline-block; background: var(--fth-canvas-soft); padding: 16px 22px; font-weight: 700; font-size: 16px; }
.fth-contact__box a { text-decoration: none; }
.fth-contact__box a:hover { text-decoration: underline; }

.fth-sitemap { background: var(--fth-paper); padding: var(--fth-gap-lg); display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--fth-gap-lg); }
.fth-sitegroup h2 { font-family: var(--fth-font-display); font-weight: 400; font-size: 19px; margin-bottom: 10px; }
.fth-sitegroup ul { display: flex; flex-direction: column; gap: 8px; }
.fth-sitegroup a { text-decoration: none; font-size: 14.5px; }
.fth-sitegroup a:hover { text-decoration: underline; }

/* ---------- footer ---------- */
.fth-foot { background: var(--fth-ink); color: var(--fth-paper); }
.fth-foot__panel { max-width: var(--fth-container); margin-inline: auto; padding: var(--fth-gap-xl) var(--fth-gap-md) var(--fth-gap-md); }
.fth-foot__top { display: grid; grid-template-columns: minmax(240px, 1fr) 2fr; gap: var(--fth-gap-lg); }
.fth-foot__brand { font-family: var(--fth-font-display); font-size: 26px; }
.fth-foot__tag { opacity: 0.75; margin-top: 6px; font-size: 14px; }
.fth-foot__owner { opacity: 0.75; margin-top: var(--fth-gap-sm); font-size: 13.5px; max-width: 42ch; }
.fth-foot__contact { margin-top: var(--fth-gap-sm); }
.fth-foot__contact a { color: var(--fth-signal); text-decoration: none; font-weight: 700; }
.fth-foot__contact a:hover { text-decoration: underline; }
.fth-foot__nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--fth-gap-md); }
.fth-foot__heading { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.6; margin-bottom: 12px; }
.fth-foot__list { display: flex; flex-direction: column; gap: 9px; }
.fth-foot__list a { text-decoration: none; opacity: 0.88; font-size: 14px; }
.fth-foot__list a:hover { opacity: 1; text-decoration: underline; }
.fth-foot__bottom { margin-top: var(--fth-gap-xl); padding-top: var(--fth-gap-md); font-size: 12.5px; opacity: 0.6; }

@media (max-width: 860px) {
  .fth-foot__top { grid-template-columns: 1fr; }
  .fth-foot__nav { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- cookie banner ---------- */
.fth-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 640px;
  margin-inline: auto;
  background: var(--fth-ink);
  color: var(--fth-paper);
  padding: 20px 22px;
  z-index: 50;
}
.fth-banner[hidden] { display: none; }
.fth-banner__inner { display: flex; flex-direction: column; gap: 14px; }
.fth-banner__text { font-size: 13.5px; line-height: 1.55; opacity: 0.92; }
.fth-banner__text a { color: var(--fth-signal); text-decoration: underline; }
.fth-banner__actions { display: flex; gap: 10px; justify-content: flex-end; }
.fth-banner .fth-knob--ghost { border-color: var(--fth-paper); color: var(--fth-paper); }
.fth-banner .fth-knob--ghost:hover { background: var(--fth-paper); color: var(--fth-ink); }

/* ---------- responsive type & spacing tweaks ---------- */
@media (max-width: 640px) {
  .fth-section { padding: var(--fth-gap-lg) var(--fth-gap-md); }
  .fth-tile__link { flex-direction: column; }
  .fth-tile__frame { width: 100%; height: 140px; }
  .fth-review { padding: var(--fth-gap-md); }
  .fth-verdict__proscons { grid-template-columns: 1fr; }
}
