
:root {
  --primary: #103b57;
  --accent: #b45f06;
  --bg: #f7f7f2;
  --text: #17202a;
  --muted: rgba(23, 32, 42, 0.68);
  --line: rgba(23, 32, 42, 0.16);
  --paper: #fff;
  --soft: #eef4f2;
  --green: #3f6f62;
  --shadow: 0 14px 34px rgba(16, 59, 87, 0.09);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.58;
}

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

a {
  color: inherit;
}

.top-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 42px;
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.top-strip a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header,
.site-footer,
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

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

.brand small {
  max-width: 300px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a,
.text-link,
.back-link {
  color: var(--primary);
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover,
.back-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: stretch;
  padding: 46px 0 28px;
}

.hero-copy-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 5px solid var(--accent);
  padding: 28px 0 12px;
}

.hero-image {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-image figcaption {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 12px;
}

.page-image {
  margin: 18px 0 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.page-image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.page-image figcaption {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 12px;
}

.page-image a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.eyebrow,
.kicker,
.section-label {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 9px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 900;
  text-decoration: none;
}

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

.button.secondary {
  background: #fff;
  color: var(--primary);
}

.button.full {
  width: 100%;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0 16px;
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-bar span {
  min-height: 76px;
  display: flex;
  align-items: center;
  background: var(--paper);
  padding: 14px;
  font-size: 13px;
  font-weight: 750;
}

.section {
  padding: 36px 0;
}

.page-image + .commercial-intro {
  padding-top: 20px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}

.section-heading.compact {
  margin-bottom: 12px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

.media-card,
.category-panel,
.sidebar-panel,
.takeaway-box,
.source-box,
.related-box,
.criteria-box,
.ranked-pick,
.decision-box,
details,
.feature-band,
.methodology {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.media-card,
.category-panel,
.sidebar-panel,
.takeaway-box,
.source-box,
.related-box,
.criteria-box,
.ranked-pick,
.decision-box,
details {
  border-radius: 8px;
  padding: 22px;
}

.media-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-strip {
  min-height: 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  padding: 8px;
}

.brand-logo.small {
  width: 34px;
  height: 34px;
  padding: 6px;
}

.brand-logo.card {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 7px;
}

.brand-logo.pick {
  flex: 0 0 auto;
}

.brand-logo.hero {
  width: 72px;
  height: 72px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.merchant-card-top,
.pick-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.merchant-card-top {
  min-height: 52px;
  margin-bottom: 12px;
}

.merchant-card-top .kicker {
  margin-bottom: 0;
}

.pick-heading {
  margin: 2px 0 10px;
}

.merchant-title-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  margin: 12px 0 16px;
}

.media-card p,
.category-panel p,
.sidebar-panel p {
  color: var(--muted);
}

.card-meta,
.byline,
.fine-print {
  color: var(--muted);
  font-size: 13px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-panel {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-panel ul,
.sidebar-panel ul,
.criteria-box ul,
.ranked-pick ul,
.decision-box ul,
.takeaway-box ul,
.source-box ul,
.related-box ul,
.check-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.category-panel li + li {
  margin-top: 8px;
}

.two-rail,
.comparison-layout,
.two-column,
.merchant-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.best-pick-layout {
  grid-template-columns: 300px minmax(0, 1fr);
}

.best-pick-layout .criteria-box {
  position: sticky;
  top: 18px;
}

.commercial-intro .article-body {
  max-width: 100%;
}

.commercial-intro .article-body > p {
  max-width: 760px;
}

.stack-list {
  display: grid;
  gap: 14px;
}

.stack-list .media-card {
  min-height: 0;
}

.page-hero {
  max-width: 900px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.article-header h1,
.merchant-hero h1 {
  font-size: 54px;
}

.topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.topic-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.feature-band {
  border-left: 5px solid var(--green);
  padding: 26px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding: 46px 0;
}

.article-header,
.article-body {
  grid-column: 1;
}

.takeaway-box,
.source-box,
.related-box {
  grid-column: 2;
}

.takeaway-box {
  grid-row: 1 / span 2;
}

.source-box,
.related-box {
  align-self: start;
}

.article-body {
  max-width: 760px;
  color: rgba(23, 32, 42, 0.94);
}

.article-body section {
  padding-top: 26px;
}

.article-body section:first-child {
  padding-top: 0;
}

.article-body h2 {
  font-size: 28px;
}

.article-body h3 {
  margin-top: 0;
}

.article-body p {
  line-height: 1.72;
}

.article-list,
.article-checklist,
.alternative-list {
  line-height: 1.62;
}

.article-list li + li,
.article-checklist li + li,
.alternative-list li + li {
  margin-top: 8px;
}

.alternative-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.alternative-list li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.alternative-list strong,
.alternative-list span {
  display: block;
}

.alternative-list span {
  margin-top: 4px;
  color: var(--muted);
}

.article-intro {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.article-intro p:first-child {
  margin-top: 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.55;
}

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

.article-card,
.scenario-card,
.article-callout,
.table-scroll {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.article-card,
.scenario-card {
  border-radius: 8px;
  padding: 18px;
}

.article-card h3,
.scenario-card h3 {
  font-size: 18px;
}

.article-card p {
  color: var(--muted);
}

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

.scenario-section {
  padding-top: 18px;
}

.scenario-stage {
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 12px;
}

.scenario-stage strong {
  display: block;
  color: var(--primary);
  font-size: 13px;
  text-transform: uppercase;
}

.scenario-stage p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.scenario-stage.verify {
  background: rgba(16, 59, 87, 0.06);
  border: 1px solid rgba(16, 59, 87, 0.12);
  border-radius: 8px;
  padding: 12px;
}

.article-callout {
  margin: 20px 0;
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  padding: 18px;
  background: rgba(180, 95, 6, 0.08);
}

.article-callout h3 {
  font-size: 18px;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  margin-top: 18px;
  border-radius: 8px;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  font-size: 14px;
}

.content-table th,
.content-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.content-table th {
  background: rgba(16, 59, 87, 0.08);
  color: var(--primary);
  font-weight: 900;
}

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

.disclaimer,
.affiliate-note {
  border-left: 4px solid var(--accent);
  background: rgba(180, 95, 6, 0.1);
  padding: 12px 14px;
  color: rgba(23, 32, 42, 0.82);
}

.commercial-hero {
  max-width: 980px;
}

.ranked-list {
  display: grid;
  gap: 16px;
}

.ranked-pick {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
}

.best-pick-layout .ranked-pick {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
}

.rank {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

.methodology {
  border-left: 5px solid var(--primary);
  padding: 26px;
}

.merchant-hero {
  padding: 48px 0 22px;
}

.merchant-summary {
  border-left: 5px solid var(--primary);
  background: var(--paper);
  padding: 24px;
}

.merchant-summary dl {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.merchant-summary dl div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

dt {
  color: var(--muted);
}

dd {
  margin: 2px 0 0;
  font-weight: 850;
}

.decision-box.muted {
  background: rgba(255, 255, 255, 0.66);
}

.faq-list {
  display: grid;
  gap: 12px;
}

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

.policy-page {
  max-width: 820px;
  padding: 56px 0;
}

.policy-page h1 {
  font-size: 54px;
}

.policy-page h2 {
  margin-top: 28px;
  font-size: 25px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.4fr) minmax(220px, 0.5fr);
  gap: 28px;
  margin-top: 28px;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-group {
  display: grid;
  gap: 8px;
}

.footer-group h2 {
  font-size: 16px;
}

.footer-group a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.empty-note {
  color: var(--muted);
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

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

  .hero,
  .two-rail,
  .comparison-layout,
  .two-column,
  .merchant-hero,
  .article-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .takeaway-box,
  .source-box,
  .related-box,
  .article-header,
  .article-body {
    grid-column: 1;
  }

  .card-grid.three,
  .category-grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .category-panel {
    min-height: 0;
  }

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

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

  .best-pick-layout .criteria-box {
    position: static;
  }

  h1,
  .page-hero h1,
  .article-header h1,
  .merchant-hero h1,
  .policy-page h1 {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .top-strip {
    flex-direction: column;
    gap: 4px;
  }

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

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

  .rank {
    width: 36px;
    height: 36px;
  }
}
