/* Game reviews share the publication's type, buttons and pagination. */
.reviews-page { padding-bottom: 72px; }
.reviews-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 68px);
  border: 1px solid #283120;
  border-radius: 24px;
  background: #0b0e0c;
  color: var(--paper);
}
.reviews-hero-copy { position: relative; z-index: 1; min-width: 0; }
.reviews-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.6;
  text-transform: uppercase;
}
.reviews-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: currentColor;
}
.reviews-hero h1 {
  max-width: 12ch;
  margin: 0 0 24px;
  font-size: clamp(40px, 5.5vw, 76px);
  letter-spacing: -.055em;
  line-height: 1.01;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.reviews-hero h1 > span { color: var(--lime); }
.reviews-intro {
  max-width: 57ch;
  margin: 0;
  color: #c3cbbd;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.8;
}
.reviews-hero .button-row { margin-top: 28px; gap: 16px; }
.reviews-hero .text-link { color: var(--lime); }
.reviews-hero-art {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  isolation: isolate;
}
.reviews-hero-art::before {
  content: '';
  position: absolute;
  inset: 7% 0;
  z-index: -1;
  border: 1px solid #cfff4036;
  border-radius: 22px;
  background: radial-gradient(ellipse at center, #cfff4018, transparent 70%);
  transform: rotate(-5deg);
}
.reviews-hero-art img {
  display: block;
  width: min(100%, 310px);
  height: auto;
  max-height: 360px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 16px 22px #0005);
}
.reviews-hero-art figcaption,
.reviews-hero-art > p,
.reviews-hero-art > span {
  max-width: 34ch;
  color: #c3cbbd;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}
.reviews-filter {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0 18px;
  padding: 23px 25px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.reviews-filter-fields { display: flex; align-items: end; flex: 1; flex-wrap: wrap; gap: 14px; min-width: 0; }
.reviews-filter label { display: grid; gap: 8px; min-width: 170px; color: var(--ink); font-size: 11px; font-weight: 800; }
.reviews-filter select,
.reviews-filter input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 11px 35px 11px 13px;
  border: 1px solid #a9b19d;
  border-radius: 9px;
  background-color: #fafbf7;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
}
.reviews-filter input { padding-right: 13px; }
.reviews-filter .button { min-height: 46px; }
.reviews-filter .text-link { align-self: center; font-size: 12px; }
.reviews-count { margin: 0 0 20px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.reviews-count strong { color: var(--ink); }
.reviews-filter .reviews-count { margin: 0; padding-block: 12px; white-space: nowrap; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 25px; }
.review-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.review-card-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e7eadf;
}
.review-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.review-card-image--cover img { object-fit: contain; padding: 18px; }
.review-card-content { display: flex; flex-direction: column; flex: 1; min-width: 0; padding: 24px; }
.review-card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 13px; margin-bottom: 14px; color: var(--muted); font-size: 10px; font-weight: 700; line-height: 1.6; }
.review-card-meta a { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; }
.review-card h2,
.review-card h3 { margin: 0 0 13px; color: var(--ink); font-size: clamp(22px, 2.2vw, 29px); line-height: 1.15; letter-spacing: -.035em; overflow-wrap: break-word; }
.review-card h2 a,
.review-card h3 a { text-decoration: none; }
.review-card-verdict { margin: 0 0 22px; color: #565f50; font-size: 13px; line-height: 1.8; overflow-wrap: anywhere; }
.review-card-content > .text-link,
.review-card-content > .button { align-self: flex-start; margin-top: auto; }
.review-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e3e6dc;
}
.review-card-footer > div:not(.review-score) { flex: 1; min-width: 135px; }
.review-card-footer .story-meta { display: flex; max-width: none; margin: 0 0 12px; gap: 5px 9px; color: var(--muted); font-size: 10px; line-height: 1.6; }
.review-card-footer .text-link { max-width: 100%; font-size: 11px; line-height: 1.6; }
.review-card-footer .text-link .icon { flex-shrink: 0; }
.review-score {
  --star-size: 16px;
  --star-gap: 2px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
  padding: 14px;
  border: 1px solid #b8c797;
  border-radius: 13px;
  background: #edf5db;
  color: #0b0e0c;
  text-align: center;
}
.review-stars { display: flex; flex-wrap: nowrap; gap: var(--star-gap); flex: 0 0 auto; line-height: 0; }
.review-star { display: block; position: relative; flex: 0 0 var(--star-size); width: var(--star-size); height: var(--star-size); }
.review-star svg { display: block; width: var(--star-size); height: var(--star-size); max-width: none; stroke-linejoin: round; }
.review-star-outline { fill: none; stroke: currentColor; stroke-width: 1.5px; opacity: .48; }
.review-star-fill { position: absolute; top: 0; left: 0; height: 100%; overflow: hidden; }
.review-star-fill svg { fill: currentColor; stroke: currentColor; stroke-width: 1.5px; }
.review-score-caption { display: inline-flex; align-items: baseline; justify-content: center; gap: 4px; white-space: nowrap; }
.review-score-number { font-family: var(--display); font-size: 34px; font-weight: 900; line-height: 1; letter-spacing: -.055em; font-variant-numeric: tabular-nums; }
.review-score-label { font-size: 10px; font-weight: 800; letter-spacing: .02em; line-height: 1.4; }
.review-score-note { font-size: 9px; font-weight: 700; line-height: 1.5; letter-spacing: .04em; }
.review-score--compact { --star-size: 12px; --star-gap: 1px; width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 12px 10px; border-radius: 9px; }
.review-score--compact .review-score-number { font-size: 24px; }
.review-score--compact .review-score-label { font-size: 9px; }
.review-card-image .review-score { position: absolute; right: 15px; bottom: 15px; z-index: 1; }
.review-card-content > .review-score { align-self: flex-start; margin-bottom: 18px; }
.review-card-footer .review-score--compact { flex: 0 0 100%; }
.reviews-empty {
  padding: clamp(28px, 6vw, 65px);
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(135deg, #f0f5e2, #fff 65%);
  text-align: center;
}
.reviews-empty > .icon { width: 36px; height: 36px; margin-bottom: 18px; color: var(--purple); }
.reviews-empty h2 { max-width: 24ch; margin: 0 auto 17px; font-size: clamp(27px, 3vw, 40px); letter-spacing: -.04em; line-height: 1.1; text-wrap: balance; }
.reviews-empty p { max-width: 59ch; margin: 0 auto 23px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.reviews-empty .button-row { justify-content: center; gap: 15px; }
.review-grid .reviews-empty { grid-column: 1 / -1; }
.reviews-empty .reviews-kicker,
.review-criteria .reviews-kicker { color: #46600e; }
.review-criteria { margin-top: 50px; padding-top: 32px; border-top: 1px solid var(--line); }
.review-criteria > h2 { margin-bottom: 22px; font-size: 29px; letter-spacing: -.035em; }
.review-criteria-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.review-criteria-grid > * { min-width: 0; padding-left: 19px; border-left: 3px solid #c2cba9; }
.review-criteria-grid h3 { margin: 0 0 11px; font-size: 17px; line-height: 1.3; }
.review-criteria-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.review-scoring-guide { margin-top: 30px; padding: clamp(22px, 3vw, 32px); border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.review-scoring-guide > h3 { margin: 0 0 13px; font-size: 22px; line-height: 1.2; letter-spacing: -.03em; }
.review-scoring-guide > p { max-width: 85ch; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.review-scale { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; margin: 25px 0 22px; }
.review-scale > div { min-width: 0; padding-top: 13px; border-top: 3px solid #bccd91; }
.review-scale dt { margin-bottom: 9px; color: #354f04; font-size: 13px; font-weight: 800; line-height: 1.4; }
.review-scale dd { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.review-scoring-guide .review-scale-note { font-size: 12px; }
.review-criteria > .text-link { margin-top: 26px; }
.home-reviews-section { border-top: 1px solid var(--line); padding-top: 48px; }
.home-reviews-section .section-heading { margin-bottom: 27px; }
.home-reviews-section .reviews-empty { text-align: left; }
.home-reviews-section .reviews-empty h2,
.home-reviews-section .reviews-empty p { margin-left: 0; }
.home-reviews-section .reviews-empty h2 { max-width: 29ch; }
.review-verdict-panel {
  margin: 30px 0;
  padding: clamp(23px, 3.5vw, 38px);
  overflow-wrap: anywhere;
  border: 1px solid #303a27;
  border-radius: 18px;
  background: #0b0e0c;
  color: var(--paper);
}
.review-verdict-top { display: flex; align-items: flex-start; gap: 26px; }
.review-verdict-copy { flex: 1; min-width: 0; }
.review-verdict-copy .eyebrow,
.review-verdict-copy .reviews-kicker { color: var(--lime); margin: 0 0 13px; }
.review-verdict-panel h2 { margin: 0 0 13px; color: var(--paper); font-size: clamp(25px, 3vw, 34px); line-height: 1.15; letter-spacing: -.035em; }
.review-verdict-copy p { margin: 0; color: #c9d0c2; font-size: 15px; line-height: 1.85; }
.review-verdict-panel .review-source-note {
  margin: 24px 0 0;
  padding: 15px 18px;
  border-left: 3px solid var(--lime);
  border-radius: 0 9px 9px 0;
  background: #1a2313;
  color: #dce5d2;
  font-size: 13px;
  line-height: 1.8;
}
.review-verdict-panel a:not(.button) { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.review-verdict-panel .review-score { padding: 16px; border-color: #637842; background: #18220f; color: var(--lime); }
.review-verdict-panel .review-score-number { font-size: 34px; }
.review-verdict-panel .review-score-note { color: #d0ddbb; }
.review-score-rationale { margin-top: 26px; }
.review-score-rationale h3 { margin: 0 0 10px; color: var(--paper); font-size: 16px; line-height: 1.4; }
.review-score-rationale p { margin: 0; color: #c9d0c2; font-size: 14px; line-height: 1.85; }
.review-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 19px 26px; margin: 27px 0 0; padding-top: 25px; border-top: 1px solid #35412b; }
.review-facts > * { min-width: 0; }
.review-facts dt,
.review-facts .review-fact-label { margin: 0 0 6px; color: #b7c1ae; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.review-facts dd { margin: 0; color: var(--paper); font-size: 13px; line-height: 1.65; }
.review-balance { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 28px; }
.review-positives,
.review-negatives { min-width: 0; padding: 22px; border: 1px solid #3b462f; border-radius: 12px; background: #171d13; }
.review-negatives { border-color: #4c4359; background: #211d28; }
.review-balance h3 { margin: 0 0 14px; color: var(--lime); font-size: 15px; line-height: 1.4; }
.review-negatives h3 { color: #dfcef8; }
.review-balance ul { margin: 0; padding-left: 19px; list-style: disc; }
.review-balance li { padding-left: 3px; color: #d4dacd; font-size: 13px; line-height: 1.75; }
.review-balance li + li { margin-top: 9px; }
.review-positives li::marker { color: var(--lime); }
.review-negatives li::marker { color: #dfcef8; }
.review-balance > :only-child { grid-column: 1 / -1; }
.review-verdict-links { display: flex; flex-wrap: wrap; gap: 13px 26px; margin-top: 26px; padding-top: 22px; border-top: 1px solid #35412b; }
.review-verdict-links .text-link { max-width: 100%; font-size: 11px; line-height: 1.7; }
.review-verdict-links .icon { flex-shrink: 0; }
.reviews-page :is(a, button, input, select):focus-visible,
.review-verdict-panel a:focus-visible { outline: 3px solid var(--purple); outline-offset: 4px; }
.reviews-hero :is(a, button):focus-visible,
.review-verdict-panel a:focus-visible { outline-color: var(--lime); }
.review-card:focus-within { border-color: var(--purple); }
/* Keep the expanded editorial navigation together above the mobile breakpoint. */
@media (min-width: 801px) and (max-width: 1190px) {
  .site-header .main-navigation { gap: 14px; }
  .site-header .main-navigation .nav-links { gap: clamp(10px, 1.65vw, 20px); }
  .site-header .main-navigation .nav-links > a { white-space: nowrap; }
  .site-header .main-navigation .guide-nav { flex-shrink: 0; }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .review-card:hover { transform: translateY(-4px); border-color: #a6b57c; box-shadow: 0 16px 30px -20px #26301a70; }
  .review-card-image:hover img { transform: scale(1.025); }
}
@media (max-width: 1050px) {
  .reviews-hero { grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: 12px; padding: 36px; }
  .reviews-hero-art { padding: 15px; }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .review-criteria-grid { gap: 20px; }
  .review-scale { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .reviews-hero { grid-template-columns: minmax(0, 1fr); padding: 31px; gap: 24px; }
  .reviews-hero h1 { max-width: 15ch; font-size: clamp(38px, 7vw, 55px); }
  .reviews-kicker { margin-bottom: 17px; }
  .reviews-hero-art { width: min(100%, 300px); justify-self: center; padding: 12px 30px; }
  .reviews-hero-art img { width: auto; max-width: 100%; max-height: 210px; }
  .reviews-hero-art::before { inset: 0 8%; transform: rotate(-3deg); }
  .reviews-filter { align-items: stretch; flex-direction: column; gap: 14px; padding: 20px; }
  .reviews-filter label { flex: 1; min-width: 150px; }
  .reviews-filter .reviews-count { padding: 0; white-space: normal; }
  .review-card-content { padding: 20px; }
  .review-card h2, .review-card h3 { font-size: 24px; }
  .review-criteria-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .review-verdict-top { flex-direction: column; gap: 20px; }
  .review-scale { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-balance { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .home-reviews-section { padding-top: 34px; }
}
@media (max-width: 520px) {
  .reviews-page { padding-bottom: 48px; }
  .reviews-hero { padding: 27px 23px; border-radius: 18px; }
  .reviews-hero h1 { font-size: 39px; }
  .reviews-intro { font-size: 14px; }
  .reviews-filter { margin-top: 22px; padding: 18px; }
  .reviews-filter-fields { align-items: stretch; flex-direction: column; gap: 15px; }
  .reviews-filter label { width: 100%; min-width: 0; }
  .reviews-filter .button { width: 100%; }
  .review-grid { grid-template-columns: minmax(0, 1fr); gap: 23px; }
  .review-card-content { padding: 23px; }
  .reviews-empty { padding: 31px 22px; }
  .reviews-empty .button-row { flex-direction: column; align-items: stretch; }
  .review-verdict-top { flex-direction: column; }
  .review-verdict-panel { padding: 23px; }
  .review-facts { gap: 20px; }
  .review-positives, .review-negatives { padding: 19px; }
  .review-verdict-links { flex-direction: column; align-items: flex-start; gap: 16px; }
  .review-scale { grid-template-columns: minmax(0, 1fr); gap: 19px; }
}
@media (prefers-reduced-motion: reduce) {
  .review-card, .review-card-image img { transition: none; }
}
@media (forced-colors: active) {
  .review-score, .review-positives, .review-negatives { border-color: CanvasText; }
}
@media print {
  .reviews-filter, .reviews-hero-art { display: none; }
  .reviews-hero, .review-verdict-panel, .review-positives, .review-negatives { background: #fff; color: #000; border-color: #999; box-shadow: none; }
  .review-verdict-panel :is(h2, h3, p, li, dt, dd, a), .reviews-intro { color: #000; }
  .review-verdict-panel .review-source-note { background: #fff; color: #000; border-color: #999; }
  .review-verdict-panel .review-score { color: #000; border-color: #999; background: #fff; }
  .review-verdict-panel .review-score-note { color: #000; }
  .review-verdict-top, .review-facts, .review-balance { break-inside: avoid; }
  .review-card { box-shadow: none; break-inside: avoid; }
}
