:root {
  --navy: #0b1220;
  --navy-2: #111c32;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --amber: #f59e0b;
  --ink: #172033;
  --muted: #58657a;
  --line: #dfe5ee;
  --soft: #f3f6fa;
  --white: #fff;
  --shadow: 0 18px 50px rgba(15, 23, 42, .1);
  --radius: 20px;
  --wrap: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "DM Sans", Arial, sans-serif; font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.15em; }
h1, h2, h3 { margin: 0; color: var(--navy); font-family: "Manrope", Arial, sans-serif; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.55rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: 1.25rem; }
button, input { font: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; color: white; background: var(--blue); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.top-strip { color: #d7e2f3; background: var(--navy); font-size: .78rem; letter-spacing: .015em; }
.top-strip .wrap { display: flex; justify-content: center; gap: 12px; padding-block: 6px; text-align: center; }
.top-strip span { color: var(--cyan); }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(203, 213, 225, .72); background: rgba(255, 255, 255, .95); backdrop-filter: blur(16px); }
.header-inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 1 355px; }
.brand img { width: 355px; height: auto; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 21px; }
.site-nav a { color: #334155; font-size: .88rem; font-weight: 700; white-space: nowrap; }
.site-nav a:hover { color: var(--blue); }
.menu-button { display: none; width: 44px; height: 42px; padding: 9px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.menu-button > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--navy); }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 20px; border: 1px solid var(--blue); border-radius: 10px; color: white; background: var(--blue); font-weight: 800; line-height: 1.2; box-shadow: 0 9px 24px rgba(37, 99, 235, .18); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 13px 28px rgba(37, 99, 235, .26); }
.button--ghost { color: var(--navy); background: transparent; border-color: #b8c5d8; box-shadow: none; }
.button--ghost:hover { color: var(--blue); background: white; }
.button--light { color: var(--navy); background: white; border-color: white; box-shadow: none; }
.button--light:hover { color: var(--blue); background: #eff6ff; }
.button--small { min-height: 42px; padding: 10px 15px; font-size: .86rem; white-space: nowrap; }
.text-link { color: var(--blue); font-weight: 800; }
.text-link:hover { color: #1d4ed8; text-decoration: underline; }
.eyebrow, .category-kicker { display: inline-block; margin-bottom: 14px; color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .12em; line-height: 1.3; text-transform: uppercase; }

.hero { position: relative; overflow: hidden; padding: 72px 0 78px; background: linear-gradient(135deg, #eef6ff 0%, #fbfdff 55%, #eefcfc 100%); }
.hero::before { position: absolute; top: -220px; right: -110px; width: 540px; height: 540px; border: 1px solid rgba(37, 99, 235, .13); border-radius: 50%; box-shadow: 0 0 0 80px rgba(6, 182, 212, .035), 0 0 0 160px rgba(37, 99, 235, .025); content: ""; }
.hero-grid { position: relative; display: grid; grid-template-columns: .87fr 1.13fr; align-items: center; gap: 64px; }
.hero-copy h1 { max-width: 650px; font-size: clamp(3rem, 5.4vw, 5.7rem); }
.hero-copy > p { max-width: 620px; margin: 24px 0 30px; color: #46556d; font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 19px; margin-top: 28px; color: #52627a; font-size: .82rem; font-weight: 700; }
.hero-proof span::before { margin-right: 7px; color: #10b981; content: "✓"; }
.hero-feature .article-card { overflow: hidden; border: 0; background: white; box-shadow: var(--shadow); }
.hero-feature .card-image { aspect-ratio: 16/9; }
.hero-feature .card-content { padding: 26px 28px 28px; }
.hero-feature .card-content h3 { font-size: 1.65rem; }

.section { padding-block: 88px; }
.section--tint { background: var(--soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-heading > p { max-width: 430px; margin: 0; color: var(--muted); }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-card { position: relative; overflow: hidden; min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.category-card::after { position: absolute; right: -45px; bottom: -45px; width: 145px; height: 145px; border-radius: 50%; background: color-mix(in srgb, var(--category) 10%, transparent); content: ""; }
.category-card:hover { border-color: color-mix(in srgb, var(--category) 48%, white); box-shadow: var(--shadow); transform: translateY(-4px); }
.category-icon { display: inline-grid; width: 52px; height: 52px; margin-bottom: 24px; place-items: center; border-radius: 14px; color: var(--category, var(--blue)); background: color-mix(in srgb, var(--category, var(--blue)) 10%, white); }
.category-icon svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.category-card h3 { font-size: 1.35rem; }
.category-card p { margin: 10px 0 20px; color: var(--muted); font-size: .95rem; }
.arrow-link { color: var(--category); font-size: .9rem; font-weight: 800; }
.arrow-link b { display: inline-block; margin-left: 6px; transition: transform .2s ease; }
.category-card:hover .arrow-link b { transform: translateX(5px); }

.article-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.article-card { display: flex; min-width: 0; overflow: hidden; flex-direction: column; border: 1px solid var(--line); border-radius: 17px; background: white; transition: transform .2s ease, box-shadow .2s ease; }
.article-card:hover { box-shadow: 0 16px 35px rgba(15, 23, 42, .09); transform: translateY(-4px); }
.card-image { display: block; overflow: hidden; aspect-ratio: 16/9; background: #dce8f8; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .card-image img { transform: scale(1.025); }
.card-content { display: flex; height: 100%; flex-direction: column; padding: 20px; }
.card-content .category-kicker { margin-bottom: 8px; font-size: .68rem; }
.card-content h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card-content h3 a:hover { color: var(--blue); }
.card-content > p { display: -webkit-box; overflow: hidden; margin: 0 0 16px; color: var(--muted); font-size: .88rem; line-height: 1.55; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.card-meta { display: flex; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid #e9edf3; color: #758197; font-size: .72rem; }
.wide-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.method-panel { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border-radius: 28px; color: white; background: var(--navy); box-shadow: var(--shadow); }
.method-panel > div { padding: 54px; }
.method-panel h2 { color: white; }
.method-panel > div > p { margin: 22px 0 28px; color: #c7d3e3; }
.method-panel ol { display: grid; margin: 0; padding: 38px 50px; list-style: none; background: var(--navy-2); }
.method-panel li { display: grid; grid-template-columns: 54px 1fr; align-items: start; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(148, 163, 184, .18); }
.method-panel li:last-child { border: 0; }
.method-panel li > span { color: var(--cyan); font-family: "Manrope", sans-serif; font-weight: 800; }
.method-panel strong { font-family: "Manrope", sans-serif; }
.method-panel li p { margin: 5px 0 0; color: #aab8cb; font-size: .9rem; }
.newsletter { padding: 66px 0; color: white; background: linear-gradient(120deg, #1d4ed8, #0e7490); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.newsletter h2 { max-width: 690px; color: white; }
.newsletter p { max-width: 700px; margin: 15px 0 0; color: #dcecff; }
.newsletter .eyebrow { color: #bae6fd; }
.newsletter .button { flex: 0 0 auto; color: var(--navy); background: white; border-color: white; }

.breadcrumbs { display: flex; overflow: hidden; align-items: center; gap: 9px; padding-block: 18px; color: #68768c; font-size: .78rem; white-space: nowrap; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs span[aria-current] { overflow: hidden; text-overflow: ellipsis; }
.archive-hero { position: relative; overflow: hidden; padding: 70px 0; background: linear-gradient(120deg, var(--navy), #172554); }
.archive-hero::after { position: absolute; right: 5%; bottom: -180px; width: 430px; height: 430px; border-radius: 50%; background: color-mix(in srgb, var(--category) 30%, transparent); filter: blur(1px); content: ""; }
.archive-hero-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 28px; color: white; }
.archive-hero .category-icon { width: 88px; height: 88px; margin: 0; color: white; background: color-mix(in srgb, var(--category) 76%, white 8%); }
.archive-hero .category-icon svg { width: 42px; }
.archive-hero h1 { color: white; font-size: clamp(2.8rem, 6vw, 5rem); }
.archive-hero p { max-width: 720px; margin: 16px 0 0; color: #cbd5e1; font-size: 1.08rem; }
.archive-hero .eyebrow { color: #7dd3fc; }
.article-grid--archive { grid-template-columns: repeat(3, 1fr); }
.article-grid--archive .article-card:first-child { grid-column: span 2; grid-row: span 2; }
.article-grid--archive .article-card:first-child .card-content h3 { font-size: 1.75rem; }
.archive-note { max-width: 900px; padding-top: 0; }
.archive-note h2 { margin-bottom: 18px; }
.archive-note p { color: var(--muted); }

.guide-header { max-width: 990px; padding: 60px 0 42px; text-align: center; }
.guide-header h1 { font-size: clamp(2.7rem, 6vw, 5.2rem); }
.dek { max-width: 830px; margin: 25px auto; color: #536078; font-size: 1.24rem; }
.byline { display: inline-flex; align-items: center; gap: 12px; text-align: left; }
.author-mark { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: white; background: linear-gradient(135deg, var(--blue), var(--cyan)); font-size: .75rem; font-weight: 800; }
.byline strong, .byline span { display: block; }
.byline span { color: #7a8699; font-size: .8rem; }
.guide-cover { width: min(1320px, calc(100% - 40px)); margin: 0 auto 62px; }
.guide-cover img { width: 100%; aspect-ratio: 16/9; border-radius: 24px; object-fit: cover; box-shadow: var(--shadow); }
.guide-cover figcaption { margin-top: 10px; color: #718096; font-size: .78rem; text-align: center; }
.guide-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: center; gap: 60px; padding-bottom: 90px; }
.article-sidebar { align-self: start; position: sticky; top: 112px; }
.toc, .sidebar-note { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fbfcfe; }
.toc > strong, .sidebar-note strong { color: var(--navy); font-family: "Manrope", sans-serif; font-size: .9rem; }
.toc ol { margin: 13px 0 0; padding-left: 18px; }
.toc li { margin: 7px 0; color: #738096; font-size: .78rem; line-height: 1.4; }
.toc a:hover { color: var(--blue); }
.sidebar-note { margin-top: 14px; background: #eef6ff; }
.sidebar-note p { margin: 7px 0 0; color: #5c6a7e; font-size: .77rem; line-height: 1.5; }
.article-body { min-width: 0; }
.article-body section { scroll-margin-top: 110px; margin-top: 55px; }
.article-body h2 { margin-bottom: 21px; font-size: 2rem; }
.article-body h3 { font-size: 1.08rem; letter-spacing: -.02em; }
.article-body p, .article-body li { color: #3f4c61; }
.standfirst { color: var(--navy) !important; font-family: "Manrope", sans-serif; font-size: 1.32rem; font-weight: 700; line-height: 1.5; }
.affiliate-callout { margin-bottom: 28px; padding: 18px 20px; border-left: 4px solid var(--amber); border-radius: 0 12px 12px 0; background: #fff8e7; }
.affiliate-callout strong { color: #8a4e00; }
.affiliate-callout p { margin: 3px 0 0; color: #66532f; font-size: .82rem; line-height: 1.5; }
.affiliate-callout a { text-decoration: underline; }
.pick-list { display: grid; gap: 13px; margin-top: 22px; }
.pick { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.pick-number { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: white; background: var(--navy); font-family: "Manrope", sans-serif; font-size: .82rem; font-weight: 800; }
.pick span { color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pick h3 { margin: 2px 0 4px; }
.pick p { margin: 0; font-size: .85rem; line-height: 1.45; }
.price-note { margin-top: 13px; color: #7b8798 !important; font-size: .76rem; }
.criteria-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.criteria-list > div { padding: 20px; border-radius: 13px; background: var(--soft); }
.criteria-list h3 { margin-bottom: 8px; }
.criteria-list p { margin: 0; font-size: .88rem; line-height: 1.55; }
.checklist { margin-top: 28px; padding: 26px; border: 1px solid #bfdbfe; border-radius: 16px; background: #eff6ff; }
.checklist h3 { margin-bottom: 12px; }
.checklist ul { margin: 0; padding-left: 22px; }
.checklist li { margin: 7px 0; font-size: .9rem; }
.mistake-list { padding: 0; list-style: none; }
.mistake-list li { position: relative; margin: 10px 0; padding: 14px 18px 14px 48px; border: 1px solid #fee2e2; border-radius: 12px; background: #fffafa; }
.mistake-list li::before { position: absolute; top: 13px; left: 17px; display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; color: #b91c1c; background: #fee2e2; content: "×"; font-weight: 800; }
.verdict { padding: 34px; border-radius: 20px; color: white; background: linear-gradient(135deg, var(--navy), #172554); }
.verdict h2, .verdict p { color: white; }
.verdict p { color: #d4dfec; }
.verdict .eyebrow { color: #67e8f9; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 18px 36px 18px 0; color: var(--navy); cursor: pointer; font-family: "Manrope", sans-serif; font-weight: 700; }
.faq-list details p { padding: 0 30px 18px 0; }
.methodology { padding-top: 30px; border-top: 1px solid var(--line); }
.methodology h2 { font-size: 1.35rem; }
.methodology p { color: #69768a; font-size: .86rem; }
.reading-progress { position: fixed; top: 0; left: 0; z-index: 100; width: 100%; height: 4px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transform: scaleX(0); transform-origin: left; }

.legal-hero { padding: 68px 0; color: white; background: linear-gradient(130deg, var(--navy), #172554); }
.legal-hero h1 { color: white; font-size: clamp(2.7rem, 5vw, 4.6rem); }
.legal-hero p { max-width: 760px; margin: 20px 0 0; color: #cbd5e1; font-size: 1.12rem; }
.legal-hero .eyebrow { color: #67e8f9; }
.prose { max-width: 850px; padding-block: 70px 100px; }
.prose h2 { margin: 42px 0 16px; font-size: 1.75rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #46546a; }
.prose a { color: var(--blue); text-decoration: underline; }
.prose li { margin: 10px 0; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.contact-cards a { padding: 24px; border: 1px solid var(--line); border-radius: 16px; text-decoration: none; }
.contact-cards a:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.contact-cards strong, .contact-cards span { display: block; }
.contact-cards span { color: var(--blue); font-size: .9rem; }
.contact-cards p { margin: 12px 0 0; font-size: .87rem; }
.not-found { padding: 120px 0 150px; text-align: center; }
.not-found > span { color: var(--cyan); font-family: "Manrope", sans-serif; font-size: 5rem; font-weight: 800; }
.not-found p { max-width: 600px; margin: 24px auto 30px; color: var(--muted); }

.trust-band { border-top: 1px solid #24324a; border-bottom: 1px solid #24324a; color: white; background: var(--navy); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid div { padding: 23px 28px; border-right: 1px solid #24324a; }
.trust-grid div:last-child { border: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: #67e8f9; font-family: "Manrope", sans-serif; font-size: .9rem; }
.trust-grid span { color: #9fb0c7; font-size: .78rem; }
.site-footer { color: #9dacbf; background: #080e19; }
.footer-grid { display: grid; grid-template-columns: 2.1fr repeat(3, 1fr); gap: 52px; padding-block: 65px; }
.footer-brand img { width: 310px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 420px; font-size: .87rem; }
.site-footer h2 { margin-bottom: 14px; color: white; font-size: .9rem; letter-spacing: .02em; }
.site-footer a { display: block; width: fit-content; margin: 8px 0; font-size: .82rem; }
.site-footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 19px 0 28px; border-top: 1px solid #202a3a; font-size: .72rem; }
.footer-bottom p { margin: 0; }
.cookie-banner { position: fixed; right: 20px; bottom: 20px; z-index: 100; display: flex; width: min(560px, calc(100% - 40px)); align-items: center; gap: 16px; padding: 16px 18px; border: 1px solid #334155; border-radius: 14px; color: #d8e0eb; background: #101827; box-shadow: 0 18px 60px rgba(0,0,0,.3); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: .78rem; line-height: 1.5; }
.cookie-banner a { color: #7dd3fc; text-decoration: underline; }
.cookie-banner button { flex: 0 0 auto; padding: 8px 13px; border: 0; border-radius: 8px; color: var(--navy); background: white; cursor: pointer; font-weight: 800; }

@media (max-width: 1080px) {
  :root { --wrap: min(100% - 34px, 960px); }
  .brand { flex-basis: 270px; }
  .brand img { width: 270px; }
  .site-nav { gap: 13px; }
  .site-nav a { font-size: .76rem; }
  .hero-grid { grid-template-columns: 1fr 1.1fr; gap: 35px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.7fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 820px) {
  .top-strip { display: none; }
  .header-inner { min-height: 70px; }
  .brand, .brand img { width: 255px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; max-height: calc(100vh - 70px); overflow: auto; align-items: stretch; flex-direction: column; gap: 0; padding: 12px 20px 22px; border-bottom: 1px solid var(--line); background: white; box-shadow: 0 16px 24px rgba(15, 23, 42, .09); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .hero { padding: 55px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 690px; }
  .hero-feature { max-width: 680px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .method-panel { grid-template-columns: 1fr; }
  .method-panel > div, .method-panel ol { padding: 40px; }
  .newsletter-inner { align-items: flex-start; flex-direction: column; }
  .article-grid--archive { grid-template-columns: repeat(2, 1fr); }
  .article-grid--archive .article-card:first-child { grid-column: span 2; grid-row: auto; }
  .guide-layout { grid-template-columns: 1fr; gap: 25px; }
  .article-sidebar { position: static; }
  .sidebar-note { display: none; }
  .toc ol { columns: 2; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 620px) {
  :root { --wrap: calc(100% - 28px); }
  body { font-size: 16px; }
  .brand, .brand img { width: 224px; }
  .section { padding-block: 62px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 25px; }
  .hero { padding-top: 43px; }
  .hero-grid { gap: 36px; }
  .hero-copy h1 { font-size: 3rem; }
  .hero-copy > p { margin-block: 19px 25px; font-size: 1.02rem; }
  .hero-proof { align-items: flex-start; flex-direction: column; }
  .hero-feature .card-content { padding: 20px; }
  .hero-feature .card-content h3 { font-size: 1.3rem; }
  .category-grid, .article-grid, .wide-card-grid, .article-grid--archive { grid-template-columns: 1fr; }
  .category-card { min-height: 0; }
  .article-grid--archive .article-card:first-child { grid-column: auto; }
  .article-grid--archive .article-card:first-child .card-content h3 { font-size: 1.3rem; }
  .method-panel > div, .method-panel ol { padding: 30px 24px; }
  .method-panel li { grid-template-columns: 42px 1fr; gap: 10px; }
  .archive-hero { padding: 48px 0; }
  .archive-hero-inner { align-items: flex-start; flex-direction: column; }
  .archive-hero .category-icon { width: 64px; height: 64px; }
  .guide-header { padding-top: 40px; text-align: left; }
  .guide-header h1 { font-size: 2.65rem; }
  .dek { font-size: 1.05rem; }
  .guide-cover { width: 100%; margin-bottom: 40px; }
  .guide-cover img { border-radius: 0; }
  .guide-cover figcaption { padding-inline: 14px; }
  .toc ol { columns: 1; }
  .standfirst { font-size: 1.15rem; }
  .article-body h2 { font-size: 1.65rem; }
  .pick { grid-template-columns: 34px 1fr; }
  .pick .button { grid-column: span 2; }
  .criteria-list { grid-template-columns: 1fr; }
  .verdict { padding: 27px 22px; }
  .contact-cards { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; padding-block: 10px; }
  .trust-grid div { padding: 14px 5px; border-right: 0; border-bottom: 1px solid #24324a; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: span 2; }
  .footer-grid > div:last-child { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .cookie-banner { right: 14px; bottom: 14px; width: calc(100% - 28px); align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
