:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ink: #071017;
  --panel: #0b1721;
  --panel-soft: #10202b;
  --paper: #f2ede2;
  --muted: #aab7c2;
  --cyan: #8eebff;
  --cyan-deep: #5cc8df;
  --line: #1e3441;
  --shell: min(1380px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% -10%, rgba(48, 113, 133, 0.16), transparent 32rem),
    var(--ink);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--cyan);
  color: var(--ink);
  padding: 10px 14px;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  height: 66px;
  border-bottom: 1px solid rgba(170, 183, 194, 0.25);
  background: rgba(5, 13, 19, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 24px;
  width: fit-content;
}

.brand-name,
.hero h1,
.review-card h3,
.score {
  font-family: "Arial Narrow", "Roboto Condensed", "Franklin Gothic Condensed", Impact, sans-serif;
}

.brand-name {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-tagline {
  color: #c9c1b4;
  font-size: 15px;
}

.main-nav {
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 44px;
  color: #c9c1b4;
  font-size: 16px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  display: grid;
  place-items: center;
  transition: color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--cyan);
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--paper);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.search {
  position: relative;
  justify-self: end;
}

.search summary {
  width: 42px;
  height: 42px;
  display: grid;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  transition: background 160ms ease, color 160ms ease;
}

.search summary::-webkit-details-marker {
  display: none;
}

.search summary:hover,
.search[open] summary {
  background: var(--panel-soft);
  color: var(--cyan);
}

.search svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.search-form {
  position: absolute;
  top: 52px;
  right: 0;
  width: min(430px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0a151d;
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.48);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

.search-form label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-form div {
  display: flex;
}

.search-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid #294656;
  border-radius: 5px 0 0 5px;
  outline: none;
  background: #081219;
  color: var(--paper);
  padding: 12px 13px;
}

.search-form button {
  border: 0;
  border-radius: 0 5px 5px 0;
  background: var(--cyan);
  color: var(--ink);
  cursor: pointer;
  padding-inline: 18px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: min(650px, calc(100vh - 66px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 45%;
  animation: imageReveal 900ms cubic-bezier(.2,.8,.2,1) both;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 11, 18, 0.99) 0%, rgba(2, 11, 18, 0.87) 29%, rgba(2, 11, 18, 0.3) 66%, rgba(2, 11, 18, 0.08) 100%),
    linear-gradient(0deg, rgba(2, 11, 18, 0.74) 0%, transparent 36%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}

.hero-content {
  width: var(--shell);
  min-height: inherit;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 64px 72px;
  animation: contentIn 500ms 80ms cubic-bezier(.2,.8,.2,1) both;
}

.eyebrow,
.card-category {
  margin: 0;
  color: var(--cyan);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 590px;
  margin: 14px 0 12px;
  font-size: clamp(4.6rem, 7.5vw, 7.4rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.84;
  text-wrap: balance;
}

.hero-lead {
  max-width: 440px;
  margin: 0;
  color: #d8d1c5;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.34;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
}

.score {
  display: grid;
  flex: none;
  place-items: center;
  border: 3px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 24px rgba(142, 235, 255, 0.18);
}

.score-large {
  width: 92px;
  height: 92px;
  font-size: 40px;
}

.hero-details {
  color: #c9c1b4;
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

.hero-details p {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.hero-details p span {
  margin-inline: 8px;
  color: var(--cyan);
}

.editors-choice {
  display: inline-flex;
  border: 1px solid rgba(142, 235, 255, 0.55);
  border-radius: 4px;
  color: var(--cyan);
  padding: 7px 10px;
  font-size: 13px;
}

.primary-button {
  min-width: 246px;
  height: 52px;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  background: var(--cyan);
  color: var(--ink);
  padding: 0 20px;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 16px;
  font-weight: 750;
  box-shadow: 0 12px 34px rgba(68, 191, 218, 0.16);
  transition: transform 180ms ease-out, background 180ms ease-out;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: #b4f4ff;
}

.primary-button span {
  font-size: 24px;
}

.reviews {
  padding-block: 42px 70px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}

.section-heading::after {
  height: 1px;
  flex: 1;
  order: 2;
  content: "";
  background: var(--line);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  letter-spacing: -0.025em;
}

.section-heading a {
  order: 3;
  color: var(--muted);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 13px;
  font-weight: 650;
  transition: color 160ms ease;
}

.section-heading a:hover {
  color: var(--cyan);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  overflow: hidden;
  border: 1px solid rgba(170, 183, 194, 0.34);
  border-radius: 10px;
  background: rgba(11, 23, 33, 0.82);
  transition: transform 240ms ease-out, border-color 240ms ease-out, box-shadow 240ms ease-out;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(142, 235, 255, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--panel-soft);
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease-out;
}

.review-card:hover .card-image-wrap img {
  transform: scale(1.035);
}

.card-content {
  padding: 16px 17px 17px;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card h3 {
  flex: 1;
  margin: 0;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}

.score-small {
  width: 56px;
  height: 56px;
  border-width: 2px;
  font-size: 24px;
}

.card-meta {
  margin-top: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.card-meta time {
  text-align: right;
}

.feature-review {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(142, 235, 255, .055), transparent 34%),
    #09141c;
  padding-block: 88px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: center;
}

.feature-copy h2,
.news h2,
.guides h2,
.standards h2 {
  margin: 10px 0 24px;
  font-family: "Arial Narrow", "Roboto Condensed", "Franklin Gothic Condensed", Impact, sans-serif;
  font-size: clamp(3rem, 5.2vw, 5.3rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .95;
}

.feature-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-copy .feature-intro {
  color: var(--paper) !important;
  font-size: clamp(1.25rem, 2vw, 1.55rem) !important;
  line-height: 1.48 !important;
}

.byline {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

.author-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.byline strong,
.byline small {
  display: block;
}

.byline strong {
  font-size: 14px;
}

.byline small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.verdict {
  border: 1px solid rgba(142, 235, 255, .34);
  border-radius: 14px;
  background: rgba(6, 16, 23, .78);
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .24);
}

.verdict-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.verdict-top > p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.score-verdict {
  width: 80px;
  height: 80px;
  font-size: 34px;
}

.verdict-text {
  margin: 18px 0;
  font-size: 19px;
  line-height: 1.5;
}

.verdict ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 13px;
}

.verdict li {
  position: relative;
  margin-block: 9px;
  padding-left: 24px;
}

.verdict li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

.verdict li.positive::before { content: "+"; color: var(--cyan); }
.verdict li.negative::before { content: "–"; color: #e8b278; }

.score-bars {
  display: grid;
  gap: 13px;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.score-bars div {
  position: relative;
  height: 31px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  overflow: hidden;
  border-bottom: 2px solid var(--line);
}

.score-bars b {
  color: var(--cyan);
}

.score-bars i {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  background: var(--cyan);
}

.news {
  padding-block: 92px;
}

.section-heading-large > div {
  flex: none;
}

.section-heading-large h2 {
  margin-bottom: 0;
}

.news-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 6vw, 86px);
  margin-top: 32px;
}

.lead-news {
  display: grid;
  grid-template-columns: minmax(120px, .45fr) 1fr;
  gap: 28px;
}

.lead-news-art {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid #265063;
  border-radius: 10px;
  background:
    linear-gradient(165deg, transparent 38%, rgba(142, 235, 255, .16) 38.2%, transparent 38.5%),
    radial-gradient(circle at 68% 25%, #17445a 0 2px, transparent 3px),
    linear-gradient(145deg, #102b39, #071017 68%);
  padding: 18px;
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: .12em;
}

.lead-news-art span:first-child {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(6rem, 13vw, 11rem);
  font-weight: 900;
  line-height: .8;
  opacity: .92;
}

.news-meta {
  margin: 0 0 9px;
  color: var(--cyan);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lead-news h3 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: -.035em;
  line-height: 1.02;
}

.lead-news p:not(.news-meta),
.news-list p:not(.news-meta) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.lead-news a {
  display: inline-flex;
  gap: 24px;
  border-bottom: 1px solid var(--cyan);
  color: var(--cyan);
  padding-bottom: 5px;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  border-bottom: 1px solid var(--line);
  padding-block: 22px;
}

.news-index {
  color: #56707f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.news-list h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.12;
}

.news-list p:not(.news-meta) {
  margin-bottom: 0;
}

.guides {
  border-block: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding-block: 86px;
}

.guides .eyebrow {
  color: #197b91;
}

.guides-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 38px;
}

.guides h2 {
  margin-bottom: 0;
}

.guides-heading > p {
  max-width: 390px;
  color: #48535a;
  font-size: 17px;
  line-height: 1.5;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #9da4a2;
}

.guide-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #9da4a2;
  padding: 24px 28px 26px 0;
}

.guide-card + .guide-card {
  padding-left: 28px;
}

.guide-card:last-child {
  border-right: 0;
}

.guide-card > span {
  color: #197b91;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
}

.guide-card h3 {
  margin: 52px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  letter-spacing: -.04em;
  line-height: 1;
}

.guide-card p {
  margin: 0;
  color: #4c565b;
  font-size: 14px;
  line-height: 1.6;
}

.guide-card a {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 13px;
  font-weight: 750;
}

.guide-card b {
  font-size: 20px;
}

.standards {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 10vw, 150px);
  padding-block: 100px;
}

.standards h2 {
  max-width: 520px;
  margin-bottom: 0;
}

.standards-copy > p {
  margin: 0;
  color: #c5ced4;
  font-size: 20px;
  line-height: 1.65;
}

.standards-facts {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.standards-facts div {
  padding: 20px 16px 0 0;
}

.standards-facts strong,
.standards-facts span {
  display: block;
}

.standards-facts strong {
  color: var(--cyan);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 42px;
}

.standards-facts span {
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 11px;
  line-height: 1.45;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #040a0e;
  padding-block: 58px 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr .6fr;
  gap: 60px;
  padding-bottom: 52px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a:not(.brand) {
  color: var(--muted);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid > div:nth-child(n+2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--paper);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand):hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #14232d;
  color: #667681;
  padding-top: 20px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

a:focus-visible,
summary:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

@keyframes contentIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes imageReveal {
  from { opacity: 0.35; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .brand-tagline {
    display: none;
  }

  .main-nav {
    gap: 24px;
    font-size: 14px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    justify-content: flex-end;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(2, 11, 18, .99) 0%, rgba(2, 11, 18, .72) 55%, rgba(2, 11, 18, .08) 100%),
      linear-gradient(90deg, rgba(2, 11, 18, .7), transparent 70%);
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .card-image-wrap {
    aspect-ratio: 16 / 6;
  }

  .feature-grid,
  .news-layout,
  .standards {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 48px;
  }

  .news-layout {
    gap: 50px;
  }

  .guide-card h3 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .site-header {
    height: 104px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: 58px 46px;
  }

  .brand-name {
    font-size: 24px;
  }

  .main-nav {
    grid-row: 2;
    grid-column: 1 / -1;
    gap: 0;
    justify-content: space-between;
    overflow-x: auto;
  }

  .main-nav a {
    padding-inline: 5px;
  }

  .search {
    grid-column: 2;
    grid-row: 1;
  }

  .search-form {
    top: 46px;
  }

  .hero {
    min-height: calc(100svh - 104px);
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-content {
    padding-block: 100px 36px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(3.6rem, 18vw, 5.1rem);
  }

  .hero-lead {
    max-width: 340px;
    font-size: 1.1rem;
  }

  .hero-meta {
    gap: 15px;
  }

  .score-large {
    width: 74px;
    height: 74px;
    font-size: 32px;
  }

  .hero-details p {
    font-size: 12px;
  }

  .editors-choice {
    font-size: 11px;
  }

  .primary-button {
    width: 100%;
    min-width: 0;
  }

  .reviews {
    padding-block: 34px 48px;
  }

  .section-heading {
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .section-heading::after {
    display: none;
  }

  .section-heading h2 {
    flex: 1;
  }

  .card-image-wrap {
    aspect-ratio: 16 / 9;
  }

  .card-meta {
    grid-template-columns: auto 1fr;
  }

  .card-meta time {
    grid-column: 2;
    text-align: left;
  }

  .feature-review,
  .news,
  .guides,
  .standards {
    padding-block: 62px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .verdict {
    padding: 22px;
  }

  .lead-news {
    grid-template-columns: 1fr;
  }

  .lead-news-art {
    min-height: 210px;
  }

  .guides-heading {
    display: block;
  }

  .guides-heading > p {
    margin-top: 18px;
  }

  .guide-grid,
  .standards-facts {
    grid-template-columns: 1fr;
  }

  .guide-card,
  .guide-card + .guide-card {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid #9da4a2;
    padding: 22px 0;
  }

  .guide-card:last-child {
    border-bottom: 0;
  }

  .guide-card h3 {
    margin-top: 34px;
  }

  .standards {
    gap: 34px;
  }

  .standards-copy > p {
    font-size: 17px;
  }

  .standards-facts div {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
  }

  .standards-facts span {
    margin: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 9px;
  }
}

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