@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/source-sans-3-latin.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 {
  color-scheme: light;
  --bg: #f5f7fb;
  --panel: #ffffff;
  --text: #172033;
  --muted: #637083;
  --line: #d7dfec;
  --soft: #eef4ff;
  --accent: #2458d3;
  --accent-dark: #173fa8;
  --green: #0f766e;
  --gold: #b56a00;
  --ink: #111827;
  --radius: 4px;
  --radius-sm: 3px;
  --shadow: 0 12px 28px rgba(25, 42, 74, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body > main,
body > .page-layout {
  flex: 1 0 auto;
}

a {
  color: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 56px;
  background: #101f30;
  border-bottom: 1px solid #22314a;
  box-shadow: 0 4px 14px rgba(9, 20, 39, 0.2);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1440px, 100%);
  min-height: inherit;
  margin: 0 auto;
  padding: 3px clamp(16px, 2.6vw, 34px);
}

.mobile-menu-toggle {
  display: none;
}

.header-actions {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 220px;
}

.wordmark-brand {
  min-width: 0;
}

.brand-wordmark {
  display: inline-flex;
  width: min(360px, 42vw);
  max-width: 360px;
}

.brand-wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-mark {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-header .brand {
  color: #ffffff;
}

.site-header .brand small {
  color: #b9c7dc;
}

.site-header .main-nav {
  color: #cbd7ea;
}

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

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  color: #cbd7ea;
  font-size: 14px;
  font-weight: 760;
}

.main-nav a {
  text-decoration: none;
}

.main-nav > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  color: #d7e1f1;
  line-height: 1;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.nav-group:hover .nav-trigger,
.nav-trigger:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 10px;
}

.nav-trigger {
  gap: 7px;
}

.nav-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -2px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 40;
  display: grid;
  min-width: 230px;
  padding: 7px;
  border: 1px solid #d8e0ec;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(8, 20, 42, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.14s ease, transform 0.14s ease, visibility 0.14s ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header .nav-menu a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: #10213f;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.15;
  white-space: nowrap;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.site-header .nav-menu a:hover,
.site-header .nav-menu a:focus-visible {
  color: #0c5aa9;
  background: #edf4fb;
}

.site-search {
  position: relative;
  flex: 0 0 auto;
}

.search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: #dbe8fb;
  cursor: pointer;
  line-height: 1;
  box-shadow: none;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.search-toggle:hover,
.search-toggle:focus-visible,
.site-search.is-open .search-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.search-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.search-popout {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 45;
  width: min(360px, calc(100vw - 24px));
  padding: 12px;
  border: 1px solid #d8e0ec;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(8, 20, 42, 0.24);
}

.search-label {
  display: block;
  margin-bottom: 7px;
  color: #425168;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.search-input {
  width: 100%;
  height: 40px;
  padding: 0 11px;
  border: 1px solid #cfd9e8;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #172033;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  outline: none;
}

.search-input:focus {
  border-color: #2b6fc2;
  box-shadow: 0 0 0 2px rgba(43, 111, 194, 0.12);
}

.search-results {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.search-result {
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  color: #172033;
  text-decoration: none;
}

.search-result:hover,
.search-result:focus-visible {
  background: #edf4fb;
  color: #0c5aa9;
}

.search-result strong {
  font-size: 15px;
  line-height: 1.15;
}

.search-result span {
  color: #667489;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.search-empty {
  margin: 0;
  padding: 8px 2px 2px;
  color: #667489;
  font-size: 14px;
  font-weight: 650;
}

.hero,
.popular-guides-band,
.ranking-band,
.spend-guide-band,
.review-band,
.deals-band,
.method-band,
.faq-band {
  padding: clamp(18px, 3.2vw, 38px) clamp(14px, 3vw, 40px);
}

.hero {
  padding-top: clamp(16px, 3vw, 30px);
  padding-bottom: 10px;
}

.ranking-band,
.spend-guide-band,
.comparison-band,
.review-band,
.method-band,
.faq-band {
  scroll-margin-top: 58px;
}

.hero-inner,
.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 9px;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.lede {
  max-width: 760px;
  margin-bottom: 10px;
  color: #3e3a35;
  font-size: clamp(17px, 2vw, 20px);
  overflow-wrap: break-word;
}

.review-hero .lede {
  max-width: none;
}

.disclosure {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.quick-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-panel-head {
  display: grid;
  gap: 4px;
}

.quick-panel-head span {
  color: var(--muted);
  font-size: 13px;
}

.quick-panel-head strong {
  font-size: 22px;
  line-height: 1.15;
}

.quick-panel p {
  color: #433f39;
}

.quick-list {
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
  padding-left: 18px;
  color: #4f4942;
  font-size: 14px;
}

.quick-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 14px;
}

.section-heading.compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  max-width: none;
}

.section-heading h2 {
  margin-bottom: 5px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.method-note {
  color: var(--muted);
}

.section-kicker {
  max-width: 660px;
  margin: 4px 0 0;
  color: var(--muted);
}

.ranking-heading {
  display: grid;
  justify-content: stretch;
  gap: 10px;
}

.ranking-heading > div:first-child {
  min-width: 0;
}

.ranking-heading h2 {
  max-width: none;
  white-space: nowrap;
}

.ranking-heading .section-kicker {
  max-width: none;
}

.rank-list {
  display: grid;
  gap: 10px;
}

.rank-row {
  display: grid;
  grid-template-columns: 44px minmax(180px, 1.1fr) 88px minmax(185px, 0.9fr) minmax(250px, 1.15fr) minmax(138px, auto);
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(42, 32, 22, 0.06);
}

.rank-row.featured {
  border-color: rgba(183, 51, 47, 0.34);
  box-shadow: var(--shadow);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
}

.site-id {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-id img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
}

.site-id h3 {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.1;
}

.site-id span,
.rating-block span,
.facts {
  color: var(--muted);
  font-size: 13px;
}

.rating-block {
  display: grid;
  gap: 0;
  text-align: center;
}

.rating-block strong {
  color: var(--green);
  font-size: 26px;
  line-height: 1;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.facts li {
  padding: 4px 8px;
  background: var(--soft);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.rank-note {
  margin: 0;
  color: #4c4640;
  font-size: 14px;
  line-height: 1.4;
}

.rank-note strong {
  color: var(--text);
}

.row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.row-actions .button {
  flex: 0 0 auto;
  height: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.review-band,
.method-band,
.faq-band {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.review-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.review-media {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 104px;
  margin: 0 0 12px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(32, 31, 29, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 38px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 34px),
    #26344d;
}

.review-media::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto 70px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow:
    0 24px 0 rgba(255, 255, 255, 0.22),
    0 48px 0 rgba(255, 255, 255, 0.18);
}

.review-media img {
  position: relative;
  z-index: 1;
  width: min(180px, 82%);
  height: 46px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  object-fit: contain;
  padding: 6px;
}

.review-media figcaption {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.review-media.tone-red {
  background-color: #1f4e79;
}

.review-media.tone-purple {
  background-color: #3f4f8f;
}

.review-media.tone-gold {
  background-color: #75612b;
}

.article-shot {
  min-height: 136px;
  margin-bottom: 14px;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.score {
  color: var(--green);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.badge {
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  background: #e8f7f4;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.review-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.review-card p,
.review-card dd {
  color: var(--muted);
}

.review-card dl {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.review-card dl div {
  display: grid;
  gap: 2px;
}

.review-card dt {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card dd {
  margin: 0;
  font-size: 14px;
}

.review-card a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.link-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.link-board a {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  text-decoration: none;
}

.link-board a:hover {
  border-color: var(--accent);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.criteria-grid > div {
  display: grid;
  gap: 6px;
  padding: 13px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.criteria-grid .criteria-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.criteria-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--accent);
  fill: currentColor;
  opacity: 0.66;
}

.criteria-grid strong {
  font-size: 18px;
}

.criteria-grid > div > span:not(.criteria-head) {
  color: var(--muted);
  font-size: 14px;
}

.method-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

details {
  padding: 12px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  flex-shrink: 0;
  border-top: 1px solid #263b60;
  background:
    linear-gradient(180deg, #10213f 0%, #0b1628 100%);
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(420px, 1.45fr);
  gap: clamp(28px, 4vw, 56px);
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 34px clamp(16px, 4vw, 56px) 22px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 12px;
  max-width: 500px;
}

.footer-logo {
  display: inline-flex;
  width: min(285px, 100%);
  text-decoration: none;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: #c9d4e6;
  font-size: 15px;
  line-height: 1.45;
}

.site-footer .footer-disclosure {
  padding-left: 11px;
  border-left: 3px solid #f4b746;
  color: #aebdd4;
  font-size: 13px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-nav h2 {
  margin: 0 0 3px;
  color: #f4b746;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-nav a {
  color: #edf4ff;
  font-size: 14px;
  font-weight: 740;
  line-height: 1.22;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #f4b746;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(199, 215, 237, 0.16);
  color: #93a4bd;
  font-size: 12px;
  line-height: 1.35;
}

.site-footer a {
  text-decoration: none;
}

.site-breadcrumb {
  width: min(920px, 100%);
  margin: 0 auto 10px;
  color: #6b7788;
  font-size: 13px;
  font-weight: 760;
}

.site-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: none;
}

.site-breadcrumb ol::-webkit-scrollbar {
  display: none;
}

.site-breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 4px;
}

.breadcrumb-link,
.breadcrumb-current {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
  line-height: 1.2;
  white-space: nowrap;
}

.breadcrumb-link {
  color: #536276;
  text-decoration: none;
}

.breadcrumb-link:hover,
.breadcrumb-link:focus-visible {
  color: var(--accent);
}

.breadcrumb-current {
  color: #24344d;
  overflow: hidden;
  max-width: min(520px, 52vw);
  text-overflow: ellipsis;
}

.breadcrumb-home {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  fill: currentColor;
  transform: translateY(-1px);
}

.breadcrumb-chevron {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  color: #95a0b0;
}

.breadcrumb-chevron path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-page {
  padding: clamp(28px, 5vw, 64px) clamp(16px, 4vw, 56px);
}

.article-page.has-breadcrumb {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 12px clamp(16px, 2.6vw, 34px) clamp(28px, 5vw, 64px);
}

.article-page > .site-breadcrumb {
  width: 100%;
  margin: 0 0 8px;
}

.article-page > .site-breadcrumb + .article-shell,
.article-page > .site-breadcrumb + .contact-shell,
.article-page > .site-breadcrumb + .privacy-shell,
.article-page > .site-breadcrumb + .disclosure-shell,
.article-page > .site-breadcrumb + .terms-shell,
.article-page > .site-breadcrumb + .not-found-shell {
  margin-top: 0;
}

.article-page.has-breadcrumb > .article-shell,
.article-page.has-breadcrumb > .contact-shell,
.article-page.has-breadcrumb > .privacy-shell,
.article-page.has-breadcrumb > .disclosure-shell,
.article-page.has-breadcrumb > .terms-shell,
.article-page.has-breadcrumb > .not-found-shell {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.article-shell {
  width: min(920px, 100%);
  margin: 0 auto;
}

.article-hero {
  margin-bottom: 18px;
}

.article-hero h1 {
  font-size: clamp(34px, 4vw, 58px);
}

.content-panel {
  padding: clamp(18px, 3vw, 30px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-panel h2 {
  margin-top: 28px;
  font-size: 26px;
}

.content-panel h2:first-child {
  margin-top: 0;
}

.content-panel p,
.content-panel li {
  color: #433f39;
}

.content-panel ul,
.content-panel ol {
  padding-left: 22px;
}

.verdict-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
}

.verdict-grid div {
  display: grid;
  align-content: center;
  gap: 3px;
  min-height: 56px;
  padding: 9px 12px 11px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.verdict-grid strong {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.verdict-grid span {
  display: block;
  color: #28231d;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.article-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}

.article-image {
  margin: 0;
  overflow: hidden;
  background: #101a2b;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(29, 44, 75, 0.12);
}

.article-image.article-image-wide {
  margin: 0 0 24px;
}

.article-image.article-image-inline {
  margin: 22px 0 28px;
}

.article-image img {
  display: block;
  width: 100%;
  height: auto;
}

.article-screenshot img {
  aspect-ratio: auto;
  object-fit: contain;
}

.article-image figcaption {
  padding: 10px 12px;
  color: #eef3ff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-shell,
.privacy-shell,
.disclosure-shell,
.terms-shell,
.not-found-shell {
  width: min(1080px, 100%);
  margin-top: -32px;
}

.contact-hero {
  max-width: 820px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 14px;
  align-items: start;
}

.contact-card {
  padding: 0;
  overflow: hidden;
}

.contact-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px 14px;
  background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
  border-bottom: 1px solid var(--line);
}

.contact-panel-head span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-panel-head h2 {
  margin: 4px 0 0;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.contact-panel-head small {
  flex: 0 0 auto;
  color: #52627a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 13px;
  padding: 16px 18px 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.contact-field > span {
  color: #263855;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 11px;
  border: 1px solid #c8d5ea;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  outline: 0;
}

.contact-input:focus {
  border-color: var(--accent);
  box-shadow: none;
}

.contact-topic-menu {
  position: relative;
  z-index: 8;
}

.contact-menu-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  height: 42px;
  padding: 0 35px 0 11px;
  border: 1px solid #c8d5ea;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.contact-menu-trigger::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 13px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #52627a;
  border-bottom: 2px solid #52627a;
  transform: rotate(45deg);
}

.contact-menu-trigger:focus-visible {
  border-color: var(--accent);
  outline: 0;
}

.contact-menu-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  display: none;
  max-height: 252px;
  padding: 5px;
  overflow: auto;
  border: 1px solid #c8d5ea;
  border-radius: var(--radius-sm);
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(25, 42, 74, 0.16);
}

.contact-topic-menu.is-open {
  z-index: 40;
}

.contact-topic-menu.is-open .contact-menu-list {
  display: grid;
  gap: 3px;
}

.contact-menu-list button {
  width: 100%;
  min-height: 34px;
  padding: 8px 9px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: #263855;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.contact-menu-list button:hover,
.contact-menu-list button:focus-visible {
  background: #eef4ff;
  color: var(--accent);
  outline: 0;
}

.contact-menu-list button.is-selected {
  background: #e3ecff;
  color: var(--accent);
}

.contact-textarea {
  min-height: 170px;
  height: auto;
  padding: 11px;
  line-height: 1.45;
  resize: vertical;
}

.contact-turnstile {
  width: 100%;
  height: 65px;
  margin: 5px 0;
  padding: 0;
  overflow: hidden;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 2px;
}

.contact-note {
  color: #52627a;
  font-size: 14px;
  font-weight: 800;
}

.contact-submit {
  min-width: 150px;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: not-allowed;
}

.contact-status {
  margin: 14px 18px 0;
  padding: 11px 12px;
  border: 1px solid #c8d5ea;
  border-radius: var(--radius-sm);
  background: #f7faff;
  color: #46566a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.contact-form .contact-status {
  margin: 0;
}

.contact-status.is-error {
  border-color: rgba(190, 18, 60, 0.28);
  background: #fff1f2;
  color: #9f1239;
}

.contact-status.is-success {
  border-color: rgba(15, 118, 110, 0.28);
  background: #ecfdf5;
  color: var(--green);
}

.contact-side {
  display: grid;
  gap: 12px;
}

.contact-info-box {
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(25, 42, 74, 0.06);
}

.contact-info-box strong {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-info-box p {
  margin: 8px 0 0;
  color: #46566a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-checklist {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  position: relative;
  padding-left: 14px;
  color: #46566a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-checklist li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

@media (max-width: 980px) {
  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .brand-wordmark {
    width: min(360px, calc(100vw - 32px));
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 38px minmax(0, 1fr) 80px;
  }

  .facts,
  .rank-note,
  .row-actions {
    grid-column: 2 / -1;
  }

  .row-actions {
    justify-content: flex-start;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  body.is-mobile-menu-open {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    min-height: 47px;
  }

  .site-header::before {
    content: "";
    position: fixed;
    inset: 48px 0 0;
    z-index: 45;
    display: none;
    background: rgba(10, 22, 39, 0.38);
  }

  .site-header.is-menu-open::before {
    display: block;
  }

  .site-header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 7px;
    min-height: 0;
    padding: 4px 10px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
    width: 34px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: var(--radius-sm);
    background: transparent;
    color: #d6e3f6;
    cursor: pointer;
    transition: background-color 0.16s ease, color 0.16s ease;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible,
  .site-header.is-menu-open .mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }

  .mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
  }

  .brand {
    grid-column: 2;
    justify-content: center;
    min-width: 0;
    width: 100%;
  }

  .brand-wordmark {
    width: min(224px, 100%);
    max-width: 224px;
  }

  .header-actions {
    display: contents;
    align-items: center;
    gap: 6px;
  }

  .main-nav {
    position: fixed;
    top: 48px;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    align-items: stretch;
    justify-content: stretch;
    gap: 8px;
    width: min(360px, 88vw);
    max-height: none;
    padding: 12px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    border: 0;
    border-right: 1px solid #263b60;
    border-radius: 0 var(--radius) var(--radius) 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
      #0f1f35;
    box-shadow: 18px 0 34px rgba(8, 20, 42, 0.38);
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translate3d(-104%, 0, 0);
    transition: transform 0.22s ease, opacity 0.18s ease, visibility 0.22s ease;
    will-change: transform;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .site-search {
    position: absolute;
    top: 4px;
    right: 10px;
    grid-column: auto;
    justify-self: auto;
    margin-left: 0;
    z-index: 2;
  }

  .search-toggle {
    width: 34px;
    min-width: 34px;
    height: 38px;
    border: 0;
    background: transparent;
    color: #d6e3f6;
    box-shadow: none;
  }

  .search-toggle:hover,
  .search-toggle:focus-visible,
  .site-search.is-open .search-toggle {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: none;
  }

  .search-toggle svg {
    width: 28px;
    height: 28px;
  }

  .main-nav > a,
  .nav-group {
    width: 100%;
  }

  .nav-group::after {
    display: none;
  }

  .site-header .main-nav a,
  .nav-trigger {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(171, 191, 224, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.045);
    color: #edf4ff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
  }

  .site-header .main-nav > a::after,
  .nav-trigger::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: 0.72;
    transform: rotate(45deg);
  }

  .nav-trigger::after {
    display: none;
  }

  .nav-group {
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(171, 191, 224, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
  }

  .nav-trigger {
    min-height: 28px;
    padding: 0 0 8px;
    border: 0;
    border-bottom: 1px solid rgba(171, 191, 224, 0.14);
    border-radius: 0;
    background: transparent;
    color: #f4b746;
    font-size: 12px;
    letter-spacing: 0.035em;
    text-transform: uppercase;
  }

  .nav-trigger::before {
    display: none;
  }

  .nav-menu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    min-width: 0;
    padding: 8px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-header .nav-menu a {
    min-height: 40px;
    padding: 9px 10px;
    border: 0;
    border-radius: var(--radius-sm);
    background: transparent;
    color: #d6e3f6;
    font-size: 14px;
    font-weight: 760;
  }

  .site-header .nav-menu a:hover,
  .site-header .nav-menu a:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
  }


  .hero,
  .ranking-band,
  .spend-guide-band,
  .review-band,
  .deals-band,
  .method-band,
  .faq-band {
    padding-left: 12px;
    padding-right: 12px;
  }

  .ranking-band,
  .spend-guide-band,
  .comparison-band,
  .review-band,
  .method-band,
  .faq-band {
    scroll-margin-top: 50px;
  }

  .section-heading.compact {
    align-items: stretch;
    flex-direction: column;
  }

  .rank-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .rating-block {
    grid-column: 2;
    text-align: left;
  }

  .facts,
  .rank-note,
  .row-actions {
    grid-column: 1 / -1;
  }

  .row-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    width: 100%;
  }

  .link-board,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .article-image-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-panel-head,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions {
    display: grid;
  }

  .contact-submit {
    width: 100%;
  }
}

.review-header {
  position: sticky;
  min-height: 60px;
  padding: 0;
  background: #10213f;
}

@media (max-width: 980px) {
  .review-header {
    position: sticky;
    min-height: 47px;
  }
}

.review-hero {
  padding-top: 14px;
  background:
    linear-gradient(180deg, #eaf3ff 0%, #f5f7fb 82%);
}

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

.review-hero h1 {
  max-width: 860px;
  font-size: clamp(34px, 4.8vw, 58px);
}

.top-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 14px 0 12px;
}

.top-pick-card {
  display: grid;
  grid-template-rows: auto 42px minmax(58px, auto) auto auto;
  gap: 8px;
  min-width: 0;
  padding: 12px;
  border: 1px solid #cbd8ee;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(25, 42, 74, 0.07);
}

.top-pick-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.top-pick-head span {
  min-width: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.top-pick-head strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  flex: 0 0 40px;
  min-height: 26px;
  border-radius: var(--radius-sm);
  background: #10213f;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.top-pick-card img {
  display: block;
  width: min(150px, 100%);
  height: 40px;
  justify-self: center;
  object-fit: contain;
  object-position: center;
}

.top-pick-card p {
  margin: 0;
  color: #344054;
  font-size: 14px;
  line-height: 1.35;
}

.top-pick-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.top-pick-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  min-width: 0;
}

.top-pick-actions .button {
  min-height: 36px;
  width: 100%;
  min-width: 0;
  padding-inline: 8px;
}

.popular-guides-band {
  padding-top: 10px;
  padding-bottom: 16px;
  background: #f5f7fb;
}

.popular-guides-band + .ranking-band {
  padding-top: 16px;
}

.popular-guides-head {
  display: flex;
  align-items: end;
  gap: 12px;
  margin-bottom: 8px;
}

.popular-guides-head h2 {
  margin: 0;
  color: #17243a;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1;
}

.popular-guides-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.popular-guide-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
  min-width: 0;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #cbd8ee;
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(25, 42, 74, 0.06);
}

.popular-guide-thumb {
  display: block;
  overflow: hidden;
  min-height: 82px;
  border-radius: var(--radius-sm);
  background: #10213f;
}

.popular-guide-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-guide-card > div {
  align-self: center;
}

.popular-guide-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.popular-guide-card h3 {
  margin: 0;
  color: #17243a;
  font-size: 17px;
  line-height: 1.15;
}

.popular-guide-card h3 a {
  color: inherit;
  text-decoration: none;
}

.popular-guide-card h3 a:hover {
  color: var(--accent);
}

.popular-guide-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.text-link {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

.review-stack {
  display: grid;
  gap: 12px;
}

.live-data-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.site-review {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 10px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(25, 42, 74, 0.08);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.site-review:first-child {
  border-color: #b9c9e6;
  box-shadow: 0 14px 32px rgba(25, 42, 74, 0.11);
}

.site-review:hover {
  border-color: #b8c9e8;
  box-shadow: 0 14px 34px rgba(25, 42, 74, 0.12);
}

.site-review-media {
  position: relative;
  display: grid;
  align-content: space-between;
  min-width: 0;
  min-height: 136px;
  padding: 12px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 36px),
    #26344d;
}

.site-review-media::before {
  content: "";
  position: absolute;
  inset: 22px 20px auto 88px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 28px 0 rgba(255, 255, 255, 0.25),
    0 56px 0 rgba(255, 255, 255, 0.18),
    -70px 92px 0 16px rgba(255, 255, 255, 0.16),
    52px 92px 0 16px rgba(255, 255, 255, 0.13);
}

.site-review-media img {
  position: relative;
  z-index: 1;
  width: min(180px, 86%);
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  background: #ffffff;
  object-fit: contain;
  padding: 6px;
}

.site-review-media.has-screenshot {
  display: block;
  align-self: start;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 10 / 11;
  padding: 0;
  overflow: hidden;
  border: 1px solid #c7d3e5;
  background: #111827;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.site-review-media.has-screenshot::before {
  display: none;
}

.site-review-media.has-screenshot a {
  display: block;
  width: 100%;
  height: 100%;
}

.site-review-media.has-screenshot a:focus-visible {
  outline: 3px solid rgba(14, 116, 144, 0.65);
  outline-offset: -3px;
}

.site-review-media.has-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: 0;
  border-radius: inherit;
  background: transparent;
  object-fit: cover;
  object-position: top center;
  padding: 0;
}

.tone-charcoal {
  background-color: #1f2937;
}

.site-review-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 4px 4px 0 0;
}

.site-review-body .row-actions {
  margin-top: auto;
}

.site-review.feature-review-card {
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px;
}

.feature-review-head {
  grid-column: 1 / -1;
  padding-bottom: 0;
}

.feature-review-grid {
  display: grid;
  grid-template-columns: minmax(260px, 318px) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.feature-review-grid .site-review-media.has-screenshot {
  align-self: stretch;
  height: auto;
  min-height: 202px;
  aspect-ratio: auto;
}

.feature-review-grid .stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
}

.feature-review-grid .stat-grid div {
  min-height: 62px;
}

.feature-review-card > .row-actions {
  grid-column: 1 / -1;
  justify-content: flex-end;
  padding: 0 2px 2px;
}

.feature-review-card > .row-actions .button.primary {
  min-width: 124px;
  min-height: 38px;
  height: 38px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 900;
}

.site-review-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding-bottom: 2px;
}

.site-review-head h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 3px;
  font-size: 25px;
  line-height: 1.05;
}

.heading-logo {
  display: block;
  width: auto;
  max-width: 92px;
  height: 22px;
  object-fit: contain;
}

.heading-rank {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 26px;
  padding: 0 8px;
  border: 1px solid rgba(36, 88, 211, 0.2);
  border-radius: var(--radius-sm);
  background: #eef4ff;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.site-review-head p {
  margin: 0;
  color: #4b5565;
}

.score-box {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  min-width: 76px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
  color: var(--accent-dark);
  text-align: center;
  box-shadow: none;
}

.score-box strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.score-box span {
  margin-top: 2px;
  color: #6c7890;
  font-size: 11px;
  font-weight: 700;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.stat-grid div {
  min-height: 58px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.stat-grid dt {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-icon {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  color: #2458d3;
  fill: currentColor;
  opacity: 0.72;
}

.stat-icon-free,
.stat-icon-cost {
  transform: translateY(-1px);
}

.stat-grid dd {
  margin: 3px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.review-note {
  margin: 0;
  color: #4b5565;
  font-size: 14.5px;
  line-height: 1.45;
}

.review-note strong {
  color: var(--text);
  font-weight: 900;
}

.card-verdict {
  display: grid;
  gap: 6px;
  margin: 0;
  color: #4b5565;
  font-size: 14.5px;
  line-height: 1.45;
}

.site-review > .card-verdict,
.site-review > .review-note {
  grid-column: 1 / -1;
  padding: 4px 2px 0;
}

.feature-review-card > .card-verdict {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.card-verdict p {
  margin: 0;
}

.card-verdict strong {
  color: var(--text);
  font-weight: 900;
}

.spend-guide-band {
  padding: clamp(18px, 3.2vw, 38px) clamp(14px, 3vw, 40px);
}

.spend-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.spend-guide-grid article {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(25, 42, 74, 0.06);
}

.spend-guide-grid span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.guide-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--accent);
  fill: currentColor;
  opacity: 0.72;
}

.guide-icon-pricing {
  margin-right: -2px;
}

.spend-guide-grid h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.15;
}

.spend-guide-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.comparison-band {
  padding: clamp(18px, 3.2vw, 38px) clamp(14px, 3vw, 40px);
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  text-align: left;
}

.comparison-table th {
  background: #eaf1fb;
  color: #25354a;
  font-size: 12px;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child {
  font-weight: 900;
}

.comparison-table th:nth-child(n+3),
.comparison-table td:nth-child(n+3) {
  white-space: nowrap;
}

.article-table-wrap {
  margin: 14px 0 12px;
}

.article-cost-table {
  min-width: 900px;
}

.article-state-table {
  min-width: 760px;
}

.article-state-table th:nth-child(n+3),
.article-state-table td:nth-child(n+3) {
  white-space: normal;
}

.article-note {
  margin: 0 0 22px;
  padding: 11px 13px;
  background: #f4f7fb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #4d5a6b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.verify-provider-table {
  display: grid;
  margin: 14px 0 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(25, 42, 74, 0.035);
}

.verify-provider-heading,
.verify-provider-row {
  display: grid;
  grid-template-columns: 128px minmax(180px, 0.9fr) minmax(0, 1.35fr);
  align-items: center;
  min-width: 0;
}

.verify-provider-heading {
  background: #f4f7fb;
  border-bottom: 1px solid var(--line);
}

.verify-provider-heading span {
  padding: 8px 10px;
  color: #526070;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.verify-provider-row {
  border-bottom: 1px solid var(--line);
}

.verify-provider-row:last-child {
  border-bottom: 0;
}

.verify-provider-site,
.verify-provider-cell {
  padding: 8px 10px;
}

.verify-provider-site {
  display: grid;
  min-width: 0;
}

.verify-provider-site strong {
  color: #17243a;
  font-size: 16px;
  line-height: 1.1;
}

.verify-provider-site span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.verify-provider-cell b {
  display: none;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.verify-provider-cell span {
  color: #25354a;
  font-size: 13px;
  line-height: 1.3;
}

.cost-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 24px;
}

.cost-card-grid article {
  padding: 13px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cost-card-grid strong,
.cost-card-grid span {
  display: block;
}

.cost-card-grid strong {
  color: #17243a;
  font-size: 16px;
}

.cost-card-grid span {
  margin-top: 3px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.cost-card-grid p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.free-site-list {
  display: grid;
  gap: 14px;
  margin: 14px 0 26px;
}

.free-site-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(25, 42, 74, 0.07);
}

.free-site-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #15243c 0%, #1d3761 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.free-site-title {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.free-site-rank {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  background: #f4c05d;
  border-radius: 50%;
  color: #101827;
  font-size: 14px;
  font-weight: 900;
  box-shadow: inset 0 -2px 0 rgba(16, 24, 39, 0.16);
}

.free-site-title h3,
.free-site-title p {
  margin: 0;
}

.free-site-title h3 {
  color: #ffffff;
  font-size: 23px;
  line-height: 1.05;
}

.free-site-title p {
  margin-top: 3px;
  color: #cdd8ea;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.free-site-brand {
  width: min(150px, 34%);
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-sm);
}

.free-site-card-body {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.free-site-copy {
  margin: 0;
  color: #25354a;
  line-height: 1.5;
}

.free-site-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.free-site-facts div {
  padding: 9px 10px;
  background: #f5f8fc;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.free-site-facts dt,
.free-site-facts dd {
  margin: 0;
}

.free-site-facts dt {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.free-site-facts dd {
  margin-top: 4px;
  color: #25354a;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.free-site-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.free-site-pros-cons > div {
  padding: 11px 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.free-site-pros-cons strong {
  display: block;
  margin-bottom: 6px;
  color: #17243a;
  font-size: 13px;
  font-weight: 900;
}

.free-site-pros-cons ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.free-site-pros-cons li {
  position: relative;
  padding-left: 15px;
  color: #46566a;
  font-size: 13px;
  line-height: 1.35;
}

.free-site-pros-cons li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.free-site-pros-cons > div:first-child li::before {
  background: #16a06a;
}

.free-site-pros-cons > div:last-child li::before {
  background: #d64b4b;
}

.free-site-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.free-site-actions .button {
  min-width: 150px;
  min-height: 42px;
  padding-block: 10px;
}

.girl-site-stack {
  display: grid;
  gap: 18px;
  margin: 2px 0 4px;
}

.cam-girl-card .feature-review-head p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.cam-girl-card .feature-review-grid {
  grid-template-columns: minmax(250px, 318px) minmax(0, 1fr);
}

.cam-girl-card .site-review-media.has-screenshot {
  min-height: 0;
  aspect-ratio: 640 / 448;
  background: transparent;
}

.cam-girl-card .site-review-media.has-screenshot img {
  object-fit: cover;
  object-position: top center;
}

.bbw-guide .cam-girl-card .feature-review-grid {
  grid-template-columns: minmax(340px, 400px) minmax(0, 1fr);
}

.bbw-guide .cam-girl-card .site-review-media.has-screenshot {
  aspect-ratio: 640 / 342;
  min-height: 0;
}

.page-layout main > .article-shell .verdict-grid {
  gap: 8px;
  margin-bottom: 18px;
}

.page-layout main > .article-shell .verdict-grid div {
  min-height: 50px;
  padding: 8px 10px 9px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(25, 42, 74, 0.04);
}

.page-layout main > .article-shell .article-image.article-image-wide {
  margin-bottom: 18px;
}

.page-layout main > .article-shell .article-image.article-image-inline {
  margin-top: 18px;
  margin-bottom: 22px;
}

.page-layout main > .article-shell .girl-site-stack {
  gap: 12px;
}

.page-layout main > .article-shell .feature-review-card > .card-verdict {
  padding-top: 10px;
}

.page-layout main > .article-shell .girl-site-take div {
  padding: 9px 10px;
}

.page-layout main > .article-shell .girl-criteria-grid div,
.page-layout main > .article-shell .girl-match-list div {
  padding: 10px 11px;
  background: #fbfdff;
  box-shadow: none;
}

.page-layout main > .article-shell .article-note {
  margin-bottom: 18px;
  padding: 10px 12px;
}

.cam-girl-card .card-verdict {
  display: grid;
  gap: 12px;
}

.cam-girl-stat-grid div {
  min-height: 66px;
}

.girl-site-take {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.girl-site-take div {
  padding: 10px 11px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.girl-site-take strong {
  display: block;
  color: #17243a;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.girl-site-take p {
  margin: 6px 0 0;
  color: #4b5b70;
  font-size: 13px;
  line-height: 1.4;
}

.girl-criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.review-method-grid {
  margin: 14px 0 24px;
}

.girl-criteria-grid div,
.girl-match-list div {
  padding: 13px 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(25, 42, 74, 0.045);
}

.girl-criteria-grid strong,
.girl-match-list strong {
  display: block;
  color: #17243a;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.15;
}

.girl-criteria-grid p {
  margin: 7px 0 0;
  color: #4c596b;
  font-size: 14px;
  line-height: 1.45;
}

.girl-match-list {
  display: grid;
  gap: 8px;
}

.girl-match-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 12px;
}

.girl-match-list span {
  color: #46566a;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hub-grid article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(25, 42, 74, 0.055);
}

.hub-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 0 0 2px;
  border-radius: var(--radius-sm);
  background: #e9eef5;
}

.hub-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-grid span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.hub-grid h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.15;
}

.hub-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.hub-grid a:not(.hub-card-media) {
  align-self: end;
  margin-top: 4px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.hub-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.hub-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid #cbd6e6;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #10213f;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(25, 42, 74, 0.055);
}

.hub-more-link:hover {
  border-color: #9fb0c9;
  background: #f6f8fb;
  color: var(--accent);
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 368px;
  gap: 18px;
  align-items: start;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 0 clamp(16px, 2.6vw, 34px);
}

.page-layout main {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.page-layout main > .hero,
.page-layout main > .popular-guides-band,
.page-layout main > .ranking-band,
.page-layout main > .spend-guide-band,
.page-layout main > .review-band,
.page-layout main > .deals-band,
.page-layout main > .method-band,
.page-layout main > .faq-band,
.page-layout main > .comparison-band {
  padding-left: 0;
  padding-right: 0;
}

.page-layout main > .ranking-band,
.page-layout main > .spend-guide-band,
.page-layout main > .review-band,
.page-layout main > .method-band,
.page-layout main > .faq-band,
.page-layout main > .comparison-band {
  padding-top: 22px;
  padding-bottom: 22px;
}

.page-layout main > .popular-guides-band {
  padding-bottom: 10px;
}

.page-layout main > .popular-guides-band + .ranking-band {
  padding-top: 16px;
}

.page-layout main > .review-band,
.page-layout main > .popular-guides-band,
.page-layout main > .spend-guide-band,
.page-layout main > .method-band,
.page-layout main > .faq-band,
.page-layout main > .comparison-band {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.page-layout .hero-inner,
.page-layout .section-inner {
  width: 100%;
}

.page-layout main > .site-breadcrumb {
  width: 100%;
  margin: 12px 0 8px;
}

.page-layout main > .site-breadcrumb + .article-shell {
  margin-top: 0;
}

.page-layout main > .article-shell {
  width: 100%;
  margin: 14px 0 56px;
}

.page-layout main > .article-shell .article-hero {
  margin-bottom: 14px;
}

.page-layout main > .article-shell .article-hero h1 {
  max-width: 100%;
}

.page-layout main > .article-shell .article-hero .lede {
  width: 100%;
  max-width: 100%;
}

.page-layout main > .article-shell .content-panel {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-layout main > .article-shell .article-image img {
  max-height: 520px;
  object-fit: contain;
  object-position: center center;
}

.page-layout main > .article-shell .article-image-wide img,
.page-layout main > .article-shell .article-image-inline:not(.article-screenshot) img {
  aspect-ratio: auto;
}

.page-layout main > .article-shell .article-screenshot img {
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
}

.page-layout main > .article-shell .content-panel h2 {
  margin-top: 24px;
}

.page-layout main > .article-shell .content-panel h2:first-child {
  margin-top: 0;
}

.right-rail {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 89px;
  z-index: 10;
  max-height: calc(100vh - 105px);
  margin-top: 14px;
  align-self: start;
  overflow: auto;
  display: grid;
  gap: 12px;
  background: var(--bg);
}

.best-sites-rail {
  position: relative;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.rail-head {
  display: grid;
  gap: 3px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.rail-head span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rail-head strong {
  font-size: 17px;
  line-height: 1.1;
}

.rail-disclosure {
  margin-top: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.rail-disclosure summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #52627a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  list-style: none;
}

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

.rail-disclosure summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border: 1px solid #b9c9e6;
  border-radius: 50%;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  font-style: normal;
}

.rail-disclosure-panel {
  display: grid;
  gap: 7px;
  margin-top: 8px;
  padding: 10px;
  border: 0;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: none;
}

.rail-disclosure-panel p {
  margin: 0;
  color: #4b5565;
  font-size: 12px;
  line-height: 1.45;
}

.rail-disclosure-panel a {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.rail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px 88px;
  gap: 10px;
  align-items: center;
  margin-top: 9px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  transition: border-color 140ms ease, background-color 140ms ease;
}

.rail-card:hover {
  border-color: #b6c6df;
  background: #f3f7ff;
}

.rail-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.rail-logo {
  display: block;
  width: min(150px, 100%);
  height: 40px;
  justify-self: start;
  object-fit: contain;
  object-position: left center;
  min-width: 0;
}

.rail-rating {
  display: grid;
  justify-items: end;
  gap: 3px;
  width: 78px;
  min-width: 0;
}

.rail-score {
  justify-self: end;
  color: #1f2a3d;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.star-rating {
  display: flex;
  justify-content: flex-end;
  gap: 1px;
  min-height: 13px;
}

.star-icon {
  width: 12px;
  height: 12px;
  fill: #f5a524;
  filter: drop-shadow(0 1px 1px rgba(17, 24, 39, 0.18));
}

.star-icon.is-half {
  fill: #ffc966;
}

.star-icon.is-empty {
  fill: rgba(99, 112, 131, 0.22);
}

.rail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 88px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.rail-button.visit {
  background: var(--accent);
  color: #ffffff;
}

.rail-promo-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.rail-promo-head {
  display: grid;
  gap: 3px;
}

.rail-promo-head span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.rail-promo-head strong {
  color: #1f2a3d;
  font-size: 16px;
  line-height: 1.15;
}

.rail-promo-media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
}

.rail-promo-media img {
  display: block;
  width: 100%;
  height: auto;
}

.best-sites-rail > p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 1050px) {
  .page-layout {
    display: flex;
    flex-direction: column;
  }

  .page-layout main {
    order: 1;
    width: 100%;
  }

  .right-rail {
    position: static;
    order: 2;
    width: 100%;
    max-height: none;
    margin-top: 0;
  }

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

  .site-review {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .stat-grid,
  .hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  .popular-guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-picks {
    grid-template-columns: 1fr;
  }

  .free-site-facts {
    grid-template-columns: 1fr;
  }

  .cam-girl-guide .cam-girl-card .feature-review-grid {
    grid-template-columns: 1fr;
  }

  .cam-girl-guide .cam-girl-card .site-review-media.has-screenshot,
  .cam-girl-guide .cam-girl-card .stat-grid {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
  }

  .cam-girl-guide .cam-girl-card .stat-grid {
    grid-template-columns: 1fr;
  }

  .popular-guide-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .popular-guide-thumb {
    min-height: 106px;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .page-layout {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-layout main {
    max-width: 100%;
    overflow: visible;
  }

  .page-layout main > .hero,
  .page-layout main > .article-shell,
  .page-layout main > .site-breadcrumb {
    max-width: 100%;
  }

  .site-breadcrumb {
    max-width: 100%;
  }

  .site-breadcrumb ol {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 5px 4px;
    overflow-x: visible;
  }

  .site-breadcrumb li:not(:first-child):not(:last-child) {
    display: none;
  }

  .site-breadcrumb li:last-child .breadcrumb-chevron {
    display: inline-flex;
  }

  .breadcrumb-link span,
  .breadcrumb-current {
    overflow: visible;
    max-width: none;
    text-overflow: clip;
    white-space: normal;
  }

  .breadcrumb-link,
  .breadcrumb-current {
    white-space: normal;
  }

  .site-breadcrumb li {
    flex: 0 1 auto;
    min-width: 0;
  }

  .ranking-heading > div:first-child,
  .site-review-body {
    max-width: calc(100vw - 48px);
  }

  .lede,
  .section-kicker {
    width: min(330px, calc(100dvw - 48px));
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .review-hero .lede {
    width: auto;
    max-width: none;
  }

  .page-layout main > .article-shell .article-hero .lede {
    width: 100%;
  }

  .site-review-head p,
  .review-note {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .review-hero h1 {
    font-size: clamp(30px, 9.5vw, 38px);
    overflow-wrap: normal;
  }

  .page-layout main > .article-shell .article-hero h1 {
    font-size: clamp(29px, 8.4vw, 36px);
    line-height: 1.05;
    overflow-wrap: normal;
  }

  .ranking-heading h2 {
    white-space: normal;
  }

  .top-picks,
  .popular-guides-grid,
  .spend-guide-grid,
  .hub-grid,
  .girl-criteria-grid {
    grid-template-columns: 1fr;
  }

  .girl-site-take,
  .girl-match-list div {
    grid-template-columns: 1fr;
  }

  .free-site-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .free-site-brand {
    align-self: stretch;
    width: 100%;
    max-width: 220px;
    height: 42px;
    margin: 0 auto;
  }

  .free-site-pros-cons {
    grid-template-columns: 1fr;
  }

  .free-site-actions {
    justify-content: stretch;
  }

  .free-site-actions .button {
    width: 100%;
  }

  .verify-provider-table {
    gap: 8px;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .verify-provider-heading {
    display: none;
  }

  .verify-provider-row {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 8px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(25, 42, 74, 0.035);
  }

  .verify-provider-site,
  .verify-provider-cell {
    padding: 0;
  }

  .verify-provider-cell {
    display: grid;
    gap: 2px;
  }

  .verify-provider-cell b {
    display: block;
  }

  .popular-guides-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .popular-guide-card {
    grid-template-columns: 128px minmax(0, 1fr);
    align-items: stretch;
  }

  .popular-guide-thumb {
    min-height: 74px;
  }

  .top-pick-actions {
    grid-template-columns: 1fr;
  }

  .top-pick-actions .button {
    white-space: normal;
  }

  .site-review-body .row-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

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

  .ranking-band .feature-review-card > .row-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    padding: 0;
  }

  .ranking-band .feature-review-card > .row-actions .button.primary {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    height: auto;
    padding: 11px 14px;
    text-align: center;
    white-space: normal;
  }

  .cam-girl-guide .feature-review-card > .row-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    padding: 0;
  }

  .cam-girl-guide .feature-review-card > .row-actions .button.primary {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    height: auto;
    padding: 11px 14px;
    text-align: center;
    white-space: normal;
  }

  .cam-girl-guide .feature-review-grid .stat-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .cam-girl-guide .cam-girl-stat-grid div {
    width: 100%;
    min-height: 56px;
    padding: 8px 9px;
  }

  .bbw-guide .cam-girl-card .feature-review-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .bbw-guide .cam-girl-card {
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    overflow: visible;
  }

  .bbw-guide .cam-girl-card .site-review-head,
  .bbw-guide .cam-girl-card .site-review-head > div,
  .bbw-guide .cam-girl-card .feature-review-grid,
  .bbw-guide .cam-girl-card .stat-grid,
  .bbw-guide .cam-girl-card .card-verdict,
  .bbw-guide .cam-girl-card .girl-site-take {
    min-width: 0;
    max-width: 100%;
  }

  .bbw-guide .cam-girl-card .feature-review-head h3 {
    gap: 6px;
    min-width: 0;
    max-width: 100%;
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .bbw-guide .cam-girl-card .heading-rank {
    min-width: 30px;
    height: 24px;
    padding-inline: 7px;
    font-size: 12px;
  }

  .bbw-guide .cam-girl-card .heading-logo {
    max-width: 84px;
    height: 20px;
  }

  .bbw-guide .cam-girl-card .feature-review-head p {
    display: -webkit-box;
    overflow: hidden;
    color: #536175;
    font-size: 13px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .bbw-guide .feature-review-card > .row-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    padding-inline: 0;
  }

  .bbw-guide .feature-review-card > .row-actions .button.primary {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

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

  .bbw-guide .feature-review-grid .stat-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .bbw-guide .cam-girl-stat-grid div {
    min-height: 56px;
    padding: 8px 9px;
  }

  .bbw-guide .stat-grid dd {
    font-size: 13px;
    line-height: 1.18;
  }

  .site-review-media,
  .site-review-body {
    grid-column: 1 / -1;
  }

  .site-review-body {
    padding-right: 0;
  }

  .site-review-media.has-screenshot {
    height: auto;
    aspect-ratio: 10 / 11;
  }

  .bbw-guide .site-review-media.has-screenshot {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 640 / 342;
    min-height: 0;
  }

  .bbw-guide .cam-girl-card .card-verdict {
    gap: 10px;
  }

  .bbw-guide .girl-site-take {
    grid-template-columns: 1fr;
  }

  .site-review-head,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .score-box {
    width: 92px;
  }
}

@media (max-width: 720px) {
  .footer-inner {
    padding: 28px 16px 20px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

@media (max-width: 340px) {
  .bbw-guide .feature-review-grid .stat-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}
