@font-face {
  font-family: "Red Hat Text";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/fonts/red-hat-text.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #1d2730;
  --ink-soft: #4a5b68;
  --brand: #ffde58;
  --accent: #f28837;
  --cta: #4ece74;
  --star: #ffc106;
  --surface: #f0f3f7;
  --surface-2: #e8ecf2;
  --line: #e8ecf2;
  --header-bg: #020609;
  --header-bg-2: #171c1f;
  --radius: 6px;
  --radius-pill: 20px;
  --shadow-card: 0 16px 29px rgba(29, 39, 48, 0.1);
  --container: 1210px;
  --content: 1180px;
  --pad: min(8vw, 15px);
  --font: "Red Hat Text", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font: 400 16px/1.7 var(--font);
  overflow-x: hidden;
  overflow-wrap: break-word;
}

img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
}

/* ---------- layout ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 var(--pad);
  margin: 0 auto;
}

.content {
  max-width: var(--content);
  margin-inline: auto;
}

.content--narrow {
  max-width: 950px;
}

.band {
  padding: 60px 0;
}

.band--surface {
  background: var(--surface);
}

.band--surface-2 {
  background: var(--surface-2);
}

.band--mist {
  background: #f8f8f8;
}

.band--pale {
  background: #f0f3f7;
}

.stack > * + * {
  margin-top: 24px;
}

.cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cols > * {
  flex: 1 1 320px;
  min-width: 0;
}

/* ---------- typography ---------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

h1 {
  font-size: min(11vw, 3.125rem);
  margin-bottom: 1.563rem;
}

h2 {
  font-size: min(8vw, 2.25rem);
  margin-bottom: 1.563rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.75rem;
  color: var(--ink-soft);
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.2rem;
}

.prose p {
  margin: 1.25rem 0;
}

.prose > :first-child {
  margin-top: 0;
}

.prose a:not(.btn) {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.prose a:not(.btn):hover {
  text-decoration-color: var(--accent);
}

.prose ul:not([class]),
.prose ol:not([class]) {
  padding-left: 1.875rem;
  margin: 1.25rem 0;
}

.prose ul:not([class]) {
  list-style: none;
}

.prose ul:not([class]) li {
  position: relative;
  margin-bottom: 0.9375rem;
}

.prose ul:not([class]) li::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  transform: rotate(45deg);
}

.prose ol:not([class]) li {
  margin-bottom: 0.9375rem;
  line-height: 1.5;
}

.prose blockquote {
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.45;
  max-width: 80%;
  margin: 3.125rem auto;
  text-align: center;
  position: relative;
  padding: 0.625rem 3.75rem;
}

.prose blockquote::before,
.prose blockquote::after {
  position: absolute;
  font-size: 5.625rem;
  line-height: 1;
  font-weight: 700;
  opacity: 0.1;
}

.prose blockquote::before {
  content: "\201C";
  left: 0;
  top: 0;
}

.prose blockquote::after {
  content: "\201D";
  right: 0;
  bottom: -2rem;
}

.prose figure {
  margin: 1.875rem 0;
  text-align: center;
}

.prose figure img {
  border-radius: var(--radius);
}

.lead {
  font-size: 1.25rem;
}

.on-dark,
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4,
.on-dark h5 {
  color: #fff;
}

.text-center {
  text-align: center;
}

/* ---------- header ---------- */

.site-header {
  position: relative;
  z-index: 100;
  background: var(--header-bg);
  box-shadow: 0 8px 9px rgba(0, 0, 0, 0.1);
}

.header-top {
  box-shadow: 0 8px 9px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.125rem;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  padding-right: 15px;
}

.brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--brand);
}

.brand img {
  display: block;
  width: 204px;
  height: 44px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0 1.25rem 0 0;
}

.nav-list li {
  position: relative;
}

.nav-list li + li::before {
  content: "/";
  position: absolute;
  left: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  opacity: 0.3;
}

.nav-list a {
  color: #fff;
  font-size: 1.125rem;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list [aria-current="page"] {
  color: var(--brand);
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: var(--header-bg-2);
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.icon-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.burger {
  display: none;
}

.header-bottom {
  position: relative;
  z-index: 3;
  background: var(--header-bg-2);
}

.nav-drawer {
  display: none;
}

.searchbar {
  display: flex;
  justify-content: flex-end;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.searchbar[data-open="true"] {
  max-height: 80px;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 26.25rem;
  max-width: 100%;
  background: #fff;
  box-shadow: 0 8px 9px rgba(0, 0, 0, 0.1);
  padding: 0 15px;
  margin: 6px 0;
}

.search-form input {
  flex: 1;
  border: 0;
  background: none;
  font: inherit;
  font-size: 1.125rem;
  padding: 0.75rem 0;
  min-width: 0;
}

.search-form input:focus {
  outline: 0;
}

.search-form button {
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--ink);
  padding: 0;
  display: flex;
}

.search-form button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ---------- breadcrumbs ---------- */

.breadcrumbs {
  background: var(--surface);
  padding: 0.875rem 0;
  font-size: 1rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.breadcrumbs li + li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--ink-soft);
  border-right: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  opacity: 0.6;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs [aria-current] {
  color: var(--ink-soft);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.9375rem;
  border: 0;
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.85;
}

.btn--cta {
  background: var(--cta);
  color: #fff;
}

.btn--ghost {
  background: var(--ink-soft);
  color: #fff;
}

.btn--block {
  display: block;
  width: 100%;
}

/* ---------- brand marks, badges, rating ---------- */

.mark {
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  flex: none;
}

.mark img {
  display: block;
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.mark--center {
  margin-inline: auto;
}

/* Landscape logos need side padding so they don't touch the circular edge. */
.mark--wide img {
  box-sizing: border-box;
  padding-inline: 11px;
}

.mark--text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0d10;
  color: var(--brand);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge {
  display: inline-block;
  background: #d276b3;
  border-radius: 8px;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.375rem 1.5625rem;
}

.badge--popular {
  background: #4785e8;
}

.badge--choice {
  background: #81d742;
}

.bonus {
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--ink-soft);
  text-align: center;
}

.bonus strong {
  color: var(--brand);
  font-weight: 700;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--star);
}

.stars svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.rating__score {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.rating__score strong {
  font-size: 1.125rem;
  color: var(--ink);
}

/* ---------- terms links + tooltip ---------- */

.tc-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.9375rem;
  font-size: 0.875rem;
}

.tc-links > * {
  position: relative;
  padding: 0 0.5rem;
}

.tc-links > * + *::before {
  content: "/";
  position: absolute;
  left: -0.1rem;
  color: #b5c2cd;
}

.tc-links a {
  color: var(--ink-soft);
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip__label {
  color: var(--ink-soft);
  text-decoration: underline dotted;
  cursor: help;
}

.tooltip__text {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  width: 12.5rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  line-height: 1.4;
  text-align: center;
  padding: 0.3125rem 0.625rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 5;
}

.tooltip__text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: var(--ink);
}

.tooltip:hover .tooltip__text,
.tooltip:focus-within .tooltip__text {
  opacity: 1;
}

/* ---------- cover sections ---------- */

.cover {
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}

.cover__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cover__bg {
  position: absolute;
  inset: 0;
  background-position: 50% 50%;
  background-size: cover;
  z-index: 0;
}

.cover__dim {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}

.cover > .container {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: 835px;
  text-align: center;
}

.hero h1 {
  letter-spacing: 0.03em;
  font-weight: 400;
}

.hero__intro {
  max-width: 950px;
  margin: 0 auto 4rem;
  letter-spacing: 0.03em;
}

/* ---------- featured offers (top 3) ---------- */

.top-offers {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 30px;
  text-align: initial;
}

.top-offers > * {
  flex: 1 1 260px;
}

.offer {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5625rem 1.25rem;
}

.offer--featured {
  border: 4px solid var(--cta);
  box-shadow: 0 16px 29px rgba(29, 39, 48, 0.1);
  padding-top: 4.0625rem;
}

.offer__flag {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: var(--brand);
  border-radius: 0 0 var(--radius) var(--radius);
  white-space: nowrap;
}

/* The row bottom-aligns so the featured card can stand proud of the other two.
   That only looks deliberate if the two plain cards match each other, so the
   bonus line reserves two lines whether or not the text needs them. 2.4em is
   two lines at the 1.2 line-height set on .bonus, and the padding has to be
   added on top of it because the box sizes border-box. It is centred with
   align-content rather than flex, since flex would make the amount its own
   item and break the line out of its normal wrapping. */
.offer__bonus {
  min-height: calc(2.4em + 3.125rem);
  align-content: center;
  padding: 1.5625rem 0;
}

/* ---------- ranking table ---------- */

.table-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.sortset {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sortset--field {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 10px;
}

.sortset button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: none;
  border-radius: var(--radius);
  padding: 4px 24px;
  font: inherit;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
}

.sortset button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sortset--field [aria-pressed="true"] {
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.sortset--order li + li::before {
  content: "/";
  opacity: 0.6;
  color: var(--ink-soft);
}

.sortset--order button {
  padding: 5px 8px;
}

.sortset--order [aria-pressed="true"] {
  text-decoration: underline;
}

.rank-list {
  counter-reset: rank;
}

.rank {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.rank + .rank {
  margin-top: 1.5625rem;
}

.rank__row {
  display: flex;
  background: #fff;
}

.rank__brand {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 41%;
  max-width: 41%;
  background: var(--surface);
  padding: 25px 25px 25px 90px;
  counter-increment: rank;
}

.rank__brand::after {
  content: counter(rank);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

.rank--single .rank__brand {
  padding-left: 25px;
}

.rank--single .rank__brand::after {
  display: none;
}

.rank__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  padding-left: 14px;
  min-width: 0;
}

.rank__name {
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: none;
  margin: 0;
}

.rank__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 30px;
}

.rank__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  flex-basis: 32%;
  max-width: 280px;
  padding: 47px 30px;
}

.rank__actions .btn {
  font-size: 1.125rem;
}

.rank__note {
  background: #fff;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--ink-soft);
  padding: 12px 30px;
  text-align: center;
}

/* The longest badge, "Editor's Choice", used to break onto a second line once
   the brand column narrowed, which made that one card taller than the rest of
   the stack. Below 993px the column goes full width and has room to spare, so
   the badge only needs holding on one line here. */
.rank__brand .badge {
  white-space: nowrap;
}

@media (min-width: 993px) and (max-width: 1210px) {
  .rank__brand .mark,
  .rank__brand .mark img {
    width: 96px;
    height: 96px;
  }

  .rank__brand .badge {
    padding-inline: 0.75rem;
  }
}

/* ---------- FAQ ---------- */

.faq {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq__q {
  position: relative;
  width: 100%;
  display: block;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  font: inherit;
  font-size: 1.3125rem;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
  color: var(--ink);
  padding: 1.25rem 2.5rem 1.25rem 0;
  cursor: pointer;
}

.faq__q::after {
  content: "";
  position: absolute;
  right: 0;
  top: 1.4rem;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffde58' stroke-width='1.4'%3E%3Ccircle cx='12' cy='12' r='11'/%3E%3Cpath d='M12 7v10M7 12h10'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.faq__q[aria-expanded="true"]::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffde58' stroke-width='1.4'%3E%3Ccircle cx='12' cy='12' r='11'/%3E%3Cpath d='M7 12h10'/%3E%3C/svg%3E");
}

.faq__a {
  background: var(--surface-2);
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq__q[aria-expanded="true"] + .faq__a {
  grid-template-rows: 1fr;
}

.faq__a > div {
  overflow: hidden;
}

.faq__a p {
  margin: 0;
  padding: 1.25rem 1.875rem;
}

/* ---------- numbered step cards ---------- */

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.steps > * {
  flex: 1 1 280px;
}

.step {
  height: 100%;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 3.125rem;
}

.step + .step {
  margin-top: 26px;
}

.step__n {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 1.5625rem;
}

.step h3 {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ink);
  text-transform: none;
  margin-bottom: 1.5625rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- review page ---------- */

.review-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
}

.review-rail {
  flex: 0 0 calc(25% - 15px);
  max-width: calc(25% - 15px);
}

.review-main {
  flex: 1;
  min-width: 0;
}

.offer-rail {
  position: sticky;
  top: 20px;
  text-align: center;
}

.offer-rail__mark {
  position: relative;
  height: 0;
  padding-bottom: 50%;
  border-radius: var(--radius);
  overflow: hidden;
}

.offer-rail__mark img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 80%;
  max-height: 90%;
  width: auto;
}

.offer-rail .badge {
  margin: 0.9375rem 0;
}

.offer-rail .bonus {
  padding-bottom: 0.9375rem;
}

.review-hero {
  display: flex;
  flex-wrap: wrap;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.review-hero__left {
  display: flex;
  flex-direction: column;
  flex: 0 0 58.333%;
  max-width: 58.333%;
  padding: 2.3125rem 1.875rem 1.25rem;
}

.review-hero__right {
  flex: 0 0 41.667%;
  max-width: 41.667%;
}

.hr {
  border: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
  margin: 1.25rem 0;
}

.proscons {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

.proscons ul {
  flex: 1 1 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.proscons li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 5px;
}

.proscons li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.proscons .pro::before {
  content: "+";
  color: var(--cta);
}

.proscons .con::before {
  content: "\2212";
  color: #be4444;
}

.review-terms {
  font-size: 0.75rem;
  line-height: 1.55;
  color: #5a6974;
  margin: 0;
}

.overview {
  height: 100%;
  background: var(--surface-2);
  border-radius: 8px;
  padding: 2.8125rem 1.875rem 2.5rem;
}

.overview h2 {
  font-size: 1rem;
  line-height: 1.125;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.overview__list {
  margin: 0;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
}

.overview dt {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ink-soft);
}

.overview dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
}

.overview dd {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
  margin: 3px 0 0.9375rem 1.25rem;
}

.overview dd:last-child {
  margin-bottom: 0;
}

/* ---------- wide inline offer card ---------- */

.offer-wide {
  max-width: 700px;
  margin: 1.875rem auto;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.offer-wide__top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5625rem;
}

.offer-wide__name {
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0 0 6px;
}

.offer-wide__foot {
  background: var(--surface-2);
  padding: 0.9375rem 1.5625rem 1.25rem;
  text-align: center;
}

.offer-wide__foot .bonus {
  margin: 0;
}

.offer-wide__foot .btn {
  display: block;
  width: 100%;
  max-width: 315px;
  margin: 0.9375rem auto 0.625rem;
  font-size: 1.3125rem;
}

/* ---------- table of contents ---------- */

.toc {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.875rem auto;
  max-width: 100%;
  font-size: 0.95rem;
}

.toc__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  cursor: pointer;
  list-style: none;
}

.toc__title::-webkit-details-marker {
  display: none;
}

.toc__title::after {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 9l7 7 7-7'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transition: transform 0.2s ease;
}

.toc[open] .toc__title {
  margin-bottom: 0.75rem;
}

.toc[open] .toc__title::after {
  transform: rotate(180deg);
}

.toc ol {
  counter-reset: toc;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nested lists inherit counter-reset from .toc ol, so counters() nests as 3.1, 3.2 */
.toc ol ol {
  padding-left: 1.25rem;
  margin-top: 0.35rem;
}

.toc li {
  counter-increment: toc;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.toc li::before {
  content: counters(toc, ".") ". ";
  color: var(--ink-soft);
}

.toc a {
  color: var(--ink);
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

/* ---------- author card ---------- */

.author {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px 40px;
  margin-top: 60px;
}

.author img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  flex: none;
}

.author__role {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink-soft);
  opacity: 0.66;
}

.author__name {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.author p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #494d4c;
  margin: 0;
}

/* ---------- related review cards ---------- */

.related {
  padding: 90px 0 0;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card-grid > * {
  flex: 1 1 calc(25% - 15px);
  min-width: 220px;
}

.mini {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}

.mini .mark {
  margin: 1.5625rem auto 1.25rem;
}

.mini .stars {
  justify-content: center;
  padding-bottom: 1.25rem;
}

.mini__foot {
  margin-top: auto;
  background: var(--surface-2);
  padding: 0 1.25rem 1.25rem;
}

.mini__foot .bonus {
  padding-top: 0.9375rem;
  font-size: 1.125rem;
}

.mini__foot .btn {
  font-size: 1.125rem;
  margin: 0.9375rem 0 0.625rem;
}

/* ---------- footer ---------- */

.site-footer {
  background: #fff;
}

.footer-strip {
  background: var(--surface);
  padding: 30px 0;
}

.footer-main {
  padding: 70px 0 50px;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-cols > * {
  flex: 1 1 220px;
}

.footer-cols > :first-child {
  flex: 1 1 30%;
  max-width: 16.25rem;
}

.footer-cols h2 {
  font-size: 1.3125rem;
  font-weight: 500;
  margin-bottom: 1.5625rem;
}

.footer-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-cols li {
  position: relative;
  padding-left: 1.125rem;
  margin-bottom: 0.3125rem;
}

.footer-cols li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid var(--brand);
}

.footer-cols a {
  text-decoration: none;
}

.footer-cols a:hover {
  color: var(--accent);
}

.responsible {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem 2.5rem;
}

.responsible img {
  opacity: 0.85;
}

.copyright {
  padding: 30px 0;
  text-align: center;
  font-size: 0.75rem;
}

.copyright p {
  margin: 0;
}

/* ---------- responsive ---------- */

@media (max-width: 1210px) {
  .rank__brand {
    padding-left: 80px;
  }

  .review-hero__left,
  .review-hero__right {
    flex-basis: 100%;
    max-width: 100%;
  }

  .card-grid > * {
    flex-basis: calc(50% - 10px);
  }
}

@media (max-width: 992px) {
  .nav-list {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-top .container {
    height: 4rem;
  }

  .brand img {
    width: 150px;
    height: 32px;
  }

  .nav-drawer {
    background: var(--header-bg-2);
    padding: 0.5rem 0 1rem;
  }

  .nav-drawer[data-open="true"] {
    display: block;
  }

  .nav-drawer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-drawer a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.125rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .review-rail,
  .review-main {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .offer-rail {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 2rem;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.25rem;
  }

  .offer-rail__mark {
    width: 180px;
    padding-bottom: 90px;
  }

  .offer-rail .btn {
    min-width: 220px;
  }

  .hero {
    min-height: 0;
    padding: 50px 0;
  }

  /* The featured card moves onto a row of its own here, which leaves the other
     two sharing a row where a plain stretch lines them up whatever their bonus
     text does. That is not an option on desktop, where all three share a row
     and stretching would flatten the featured card down with the rest. */
  .top-offers {
    align-items: stretch;
  }

  .top-offers > * {
    flex-basis: calc(50% - 15px);
  }

  .offer--featured {
    order: -1;
    flex-basis: 100%;
  }

  .rank__row {
    flex-wrap: wrap;
  }

  .rank__brand {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .rank__actions {
    max-width: none;
    flex: 1 1 100%;
    padding: 0 30px 30px;
  }

  .rank__info {
    flex: 1 1 100%;
    padding: 25px 30px 10px;
  }

  .related {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .band {
    padding: 40px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  .prose blockquote {
    max-width: 100%;
    padding: 0.625rem 1.5rem;
    font-size: 1.15rem;
  }

  .step {
    padding: 1.875rem;
  }

  .author {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    padding: 1.875rem 1.25rem;
  }

  .card-grid > * {
    flex-basis: 100%;
  }

  .proscons {
    flex-direction: column;
    gap: 0;
  }

  .review-hero__left {
    padding: 1.5rem 1.25rem;
  }

  .overview {
    padding: 1.875rem 1.25rem;
  }

  .footer-cols {
    flex-direction: column;
  }

  .footer-cols > :first-child {
    max-width: none;
  }
}

@media (max-width: 500px) {
  .rank__brand {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 60px 20px 20px;
  }

  .rank__brand::after {
    top: 15px;
    left: 20px;
    transform: none;
  }

  .rank__meta {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .rank__meta .rating {
    justify-content: center;
  }

  /* no rank number on single cards, so no room needs reserving for it */
  .rank--single .rank__brand {
    padding-top: 20px;
  }

  .rank__info,
  .rank__actions {
    padding-inline: 20px;
  }

  .step {
    padding: 1.5rem 1.25rem;
  }
}

@media (min-width: 993px) {
  .cover--fixed .cover__bg {
    background-attachment: fixed;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
