/* ========================================
   DPR — Detailed Porn Reviews
   Light theme, blue header, responsive
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #ffffff;
  --bg-card:    #f6f8fa;
  --bg-card-hover: #eef1f5;
  --bg-header:  #2e6395;
  --bg-header-hover: #245180;
  --bg-footer:  #f6f8fa;
  --bg-verdict: #f0f4f8;
  --border:     #d8dee4;
  --border-light:#c4cdd5;

  --text:       #1f2328;
  --text-dim:   #575d65;
  --text-muted: #8b949e;
  --text-link:  #0969da;
  --text-link-hover: #0550ae;

  --accent:     #1a7f37;
  --accent-dim: #116329;
  --accent-orange: #9a6700;
  --accent-red: #cf222e;
  --accent-blue:#0969da;

  --score-great:#1a7f37;
  --score-good: #2da44e;
  --score-ok:   #9a6700;
  --score-bad:  #cf222e;

  --radius:     8px;
  --radius-lg:  12px;
  --container:  1340px;
  --header-h:   56px;

  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', monospace;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text-link); text-decoration: none; transition: color .15s; }
a:hover { color: var(--text-link-hover); }

h1, h2, h3, h4 { color: var(--text); line-height: 1.3; font-weight: 700; }
h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
h3 { font-size: 1.2rem; margin: 1.5rem 0 .5rem; }

p { margin-bottom: 1rem; color: var(--text-dim); }
ul, ol { margin: 0 0 1rem 1.5rem; color: var(--text-dim); }
li { margin-bottom: .35rem; }

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ========================================
   Header & Dropdown Navigation
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  height: var(--header-h);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.header__logo a {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.header__logo a:hover { color: #d4e6f9; }
.header__logo .logo-accent { color: #7ec8f0; }

/* --- Main nav (desktop) --- */
.header__nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__nav-list {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
  height: 100%;
  align-items: stretch;
}
.header__nav-list > li {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
}
.header__nav-list > li > a,
.header__nav-list > li > .nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: .3rem;
  height: 100%;
  padding: 0 1rem;
  color: rgba(255,255,255,.9);
  font-size: .875rem;
  font-weight: 500;
  transition: background .15s, color .15s;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: none;
}
.header__nav-list > li > a:hover,
.header__nav-list > li > .nav-dropdown__trigger:hover,
.header__nav-list > li.dropdown-open > .nav-dropdown__trigger {
  background: var(--bg-header-hover);
  color: #fff;
}
.header__nav-list > li > a.active {
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* Dropdown arrow */
.nav-dropdown__trigger .nav-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255,255,255,.6);
  margin-left: .2rem;
  transition: transform .2s;
}
.dropdown-open .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  z-index: 200;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: .4rem 0;
  z-index: 200;
}
.dropdown-open > .nav-dropdown {
  display: block;
}
/* Last two dropdowns align right to prevent overflow */
.header__nav-list > li:nth-last-child(-n+2) > .nav-dropdown {
  left: auto;
  right: 0;
}
.nav-dropdown a {
  display: block;
  padding: .5rem 1rem;
  font-size: .85rem;
  color: var(--text-dim);
  transition: background .1s, color .1s;
}
.nav-dropdown a:hover {
  background: var(--bg-card);
  color: var(--text);
}
.nav-dropdown__score {
  float: right;
  font-weight: 700;
  font-size: .8rem;
  color: var(--text-muted);
}

/* --- Burger (mobile) --- */
.header__burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.header__burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all .25s;
}
.header__burger-btn span:nth-child(1) { top: 0; }
.header__burger-btn span:nth-child(2) { top: 9px; }
.header__burger-btn span:nth-child(3) { top: 9px; }
.header__burger-btn span:nth-child(4) { top: 18px; }
.header__burger-btn.open span:nth-child(1) { opacity: 0; top: 9px; }
.header__burger-btn.open span:nth-child(2) { transform: rotate(45deg); }
.header__burger-btn.open span:nth-child(3) { transform: rotate(-45deg); }
.header__burger-btn.open span:nth-child(4) { opacity: 0; top: 9px; }

.header__burger {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.header__burger.open { display: block; }
.header__burger .mobile-nav-group {
  border-bottom: 1px solid var(--border);
  padding: .5rem 1rem;
}
.header__burger .mobile-nav-group:last-child { border-bottom: none; }
.header__burger .mobile-nav-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  padding: .3rem 0;
}
.header__burger .mobile-nav-group a {
  display: block;
  padding: .4rem 0;
  font-size: .9rem;
  color: var(--text-dim);
}
.header__burger .mobile-nav-group a:hover { color: var(--text); }

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: .75rem 0;
  font-size: .8rem;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--text-link); }
.breadcrumbs .sep { margin: 0 .4rem; }

/* ========================================
   Hero (homepage)
   ======================================== */
.hero {
  padding: 3rem 0 2rem;
  text-align: center;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: .75rem;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 750px;
  margin: 0 auto 1.5rem;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}
.hero__stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}
.hero__stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ========================================
   Score Badge
   ======================================== */
.score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.score--sm { width: 38px; height: 38px; font-size: 1rem; }
.score--md { width: 52px; height: 52px; font-size: 1.3rem; }
.score--md .score__max { font-size: .65em; font-weight: 600; opacity: .7; }
.score--lg { width: 72px; height: 72px; font-size: 1.8rem; border-radius: var(--radius-lg); }
.score--great { background: var(--score-great); }
.score--good  { background: var(--score-good); }
.score--ok    { background: var(--score-ok); }
.score--bad   { background: var(--score-bad); }

/* ========================================
   Review Card (homepage listing) — NEW horizontal layout
   Logo (left) | Info (center) | Buttons (right)
   ======================================== */
.review-cards { display: flex; flex-direction: column; gap: .75rem; }

.review-card {
  display: grid;
  grid-template-columns: auto 120px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow .2s, border-color .2s;
}
.review-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}

.review-card__rank {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-muted);
  text-align: center;
  min-width: 32px;
}
.review-card__logo {
  width: 120px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: contain;
  flex-shrink: 0;
  background: var(--bg-card);
  padding: 4px;
}

.review-card__body { flex: 1; min-width: 0; }
.review-card__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .3rem;
}
.review-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.review-card__name a { color: var(--text); }
.review-card__name a:hover { color: var(--accent-blue); }

/* Star rating display */
.review-card__stars {
  display: inline-flex;
  gap: 1px;
  color: #f5a623;
  font-size: .95rem;
  flex-shrink: 0;
}

.review-card__headline-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.review-card__headline-score small {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.review-card__tagline {
  font-size: .85rem;
  color: var(--text-dim);
  margin-bottom: .5rem;
}
.review-card__pros {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.review-card__pros li {
  font-size: .75rem;
  color: var(--accent);
  background: rgba(26, 127, 55, .08);
  padding: .15rem .55rem;
  border-radius: 20px;
  margin: 0;
}

.review-card__actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: stretch;
  min-width: 140px;
}
.review-card__price {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
}
.review-card__price strong {
  color: var(--text);
  font-weight: 700;
}

/* Legacy footer for backwards compat */
.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .55rem 1.25rem;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-dim); color: #fff; }
.btn--cta {
  background: #e8600a;
  color: #fff;
}
.btn--cta:hover { background: #cc5209; color: #fff; }
.btn--outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text);
}
.btn--outline:hover { border-color: var(--accent-blue); color: var(--accent-blue); }
.btn--sm { padding: .4rem .9rem; font-size: .78rem; }
.btn--lg { padding: .75rem 1.75rem; font-size: 1rem; }
.btn--block { width: 100%; text-align: center; }

/* ========================================
   Quick Verdict (review page)
   ======================================== */
.verdict {
  background: var(--bg-verdict);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.verdict__top {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.verdict__info { flex: 1; }
.verdict__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.verdict__subtitle {
  font-size: .9rem;
  color: var(--text-dim);
}
.verdict__summary {
  font-size: .95rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.verdict__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.verdict__price-tag {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ========================================
   Pros/Cons
   ======================================== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.pros-cons__col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.pros-cons__heading {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.pros-cons__heading--pro { color: var(--accent); }
.pros-cons__heading--con { color: var(--accent-red); }
.pros-cons__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pros-cons__list li {
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text-dim);
  margin: 0;
}
.pros-cons__list li:last-child { border-bottom: none; }
.pros-cons__list li::before { margin-right: .4rem; }
.pros-cons__list--pro li::before { content: "\2713"; color: var(--accent); font-weight: 700; }
.pros-cons__list--con li::before { content: "\2717"; color: var(--accent-red); font-weight: 700; }

/* ========================================
   Info Table (review details)
   ======================================== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .9rem;
}
.info-table th,
.info-table td {
  padding: .65rem .85rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.info-table th {
  color: var(--text-muted);
  font-weight: 500;
  width: 40%;
}
.info-table td { color: var(--text); }

/* ========================================
   Comparison Table (top-list)
   ======================================== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .85rem;
}
.compare-table thead th {
  background: var(--bg-card);
  padding: .75rem .6rem;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  text-align: left;
  white-space: nowrap;
}
.compare-table tbody td {
  padding: .75rem .6rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  vertical-align: middle;
}
.compare-table tbody tr:hover { background: var(--bg-card-hover); }
.compare-table .site-cell {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--text);
}
.compare-table .site-cell img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}

/* ========================================
   Toplist Cards
   ======================================== */
.toplist-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}
.toplist-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.25rem;
  transition: border-color .15s;
  display: flex;
  flex-direction: column;
}
.toplist-card:hover {
  border-color: var(--accent-blue);
}
.toplist-card__rank {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--bg-header);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: .03em;
}
.toplist-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
}
.toplist-card__logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}
.toplist-card__title {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  min-width: 0;
}
.toplist-card__title {
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
}
.toplist-card__title h2 {
  font-size: 1.1rem;
  margin: 0;
  padding: 0;
  border: none;
  line-height: 1.3;
}
.toplist-card__title h2 a {
  color: var(--text);
  text-decoration: none;
}
.toplist-card__title h2 a:hover {
  color: var(--text-link);
}
.toplist-card__tagline {
  font-size: .85rem;
  color: var(--text-dim);
  margin: 0 0 .75rem;
  font-style: italic;
}
.toplist-card__data {
  display: flex;
  gap: .5rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.toplist-card__stat {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: .4rem .75rem;
  display: flex;
  flex-direction: column;
  min-width: 80px;
}
.toplist-card__stat-label {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
}
.toplist-card__stat-value {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
}
.toplist-card__desc {
  font-size: .85rem;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 0 0 1rem;
  flex: 1;
}
.toplist-card__desc a {
  display: none; /* review link is in actions */
}
.toplist-card__actions {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.toplist-card__actions .btn--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: .8rem;
  padding: .45rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: border-color .15s, color .15s;
}
.toplist-card__actions .btn--outline:hover {
  border-color: var(--text-link);
  color: var(--text-link);
}

@media (max-width: 1100px) {
  .toplist-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .toplist-cards { grid-template-columns: 1fr; }
  .toplist-card { padding: 1.25rem 1rem 1rem; text-align: center; }
  .toplist-card__header { flex-direction: column; align-items: center; }
  .toplist-card__logo { width: 140px; height: 140px; border-radius: var(--radius-lg); }
  .toplist-card__title { align-items: center; }
  .toplist-card__title h2 { font-size: 1.2rem; }
  .toplist-card__tagline { text-align: center; }
  .toplist-card__data { justify-content: center; gap: .35rem; }
  .toplist-card__stat { min-width: 80px; padding: .4rem .6rem; }
  .toplist-card__desc { text-align: left; }
  .toplist-card__actions { justify-content: center; flex-wrap: wrap; }
}

/* ========================================
   WP Content Formatting
   Tables, lists, details/summary, figures, columns
   ======================================== */
.content {
  min-width: 0;
}
/* On review pages with sidebar, content fills the grid column naturally */
.content h2 {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.content img {
  border-radius: var(--radius);
  margin: 1rem 0;
}
.content blockquote {
  border-left: 3px solid var(--accent);
  padding: .75rem 1rem;
  margin: 1rem 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-dim);
  font-style: italic;
}

/* WP tables in content */
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .88rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.content table thead th,
.content table tr:first-child th {
  background: #2c3e50;
  color: #fff;
  font-weight: 600;
  padding: .7rem .85rem;
  text-align: left;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.content table th,
.content table td {
  padding: .65rem .85rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.content table tbody tr:nth-child(even) {
  background: var(--bg-card);
}
.content table tbody tr:hover {
  background: var(--bg-card-hover);
}
.content table td {
  color: var(--text-dim);
}
.content table a {
  font-weight: 500;
}

/* WP lists in content */
.content ul,
.content ol {
  margin: 1rem 0 1.5rem 1.75rem;
  color: var(--text-dim);
}
.content ul li,
.content ol li {
  margin-bottom: .45rem;
  line-height: 1.6;
  padding-left: .25rem;
}
.content ul li::marker {
  color: var(--accent);
}
.content ol li::marker {
  color: var(--accent-blue);
  font-weight: 600;
}

/* Details / Summary (accordion in WP content) */
.content details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 1rem 0;
  overflow: hidden;
}
.content details summary {
  padding: .85rem 1rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  cursor: pointer;
  background: var(--bg-card);
  transition: background .15s;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content details summary::-webkit-details-marker { display: none; }
.content details summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: .75rem;
}
.content details[open] summary::after {
  content: "\2212";
}
.content details summary:hover {
  background: var(--bg-card-hover);
}
.content details > *:not(summary) {
  padding: 0 1rem;
}
.content details > p:first-of-type {
  padding-top: .75rem;
}
.content details > p:last-of-type,
.content details > *:last-child {
  padding-bottom: .75rem;
}

/* Figure / Figcaption */
.content figure {
  margin: 1.5rem 0;
  text-align: center;
}
.content figure img {
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.content figcaption {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .5rem;
  font-style: italic;
  line-height: 1.4;
}

/* WP Block Columns */
.content .wp-block-columns,
.content .has-2-columns,
.content [class*="columns"] {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.content .wp-block-column {
  flex: 1;
  min-width: 0;
}

/* Definition lists (dl/dt/dd) in content */
.content dl {
  margin: 1.5rem 0;
}
.content dt {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  margin-top: 1rem;
  padding: .4rem 0;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.content dd {
  margin: .35rem 0 .75rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--bg-card-hover);
  color: var(--text-dim);
  font-size: .92rem;
}
.content small {
  font-size: .82rem;
  color: var(--text-muted);
}
.content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* Top-list page entries — card-style h3+img+text blocks */
.page-toplist .content h3 {
  font-size: 1.15rem;
  margin: 2rem 0 .5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border);
}
.page-toplist .content h3:first-of-type {
  border-top: none;
  padding-top: 0;
}
.page-toplist .content h3 + p {
  font-size: .95rem;
  margin-bottom: .75rem;
}
.page-toplist .content h3 + p + p img,
.page-toplist .content h3 + p + p a img,
.page-toplist .content p > a > img[width="135"] {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  vertical-align: middle;
  margin-right: .75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
/* Category/niche pages — similar cards */
.page-editorial .content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 .5rem;
}
.page-editorial .content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ========================================
   Sidebar (TOC)
   ======================================== */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 2.5rem;
  align-items: start;
}
.layout-with-sidebar > .content {
  grid-column: 1;
  min-width: 0;
}
.sidebar {
  grid-column: 2;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  align-self: start;
}
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.toc__title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc__list li {
  margin: 0;
}
.toc__list a {
  display: block;
  padding: .3rem 0;
  font-size: .8rem;
  color: var(--text-dim);
  border-left: 2px solid transparent;
  padding-left: .75rem;
  transition: all .15s;
}
.toc__list a:hover,
.toc__list a.active {
  color: var(--text);
  border-left-color: var(--accent);
}

/* ========================================
   FAQ
   ======================================== */
.faq { margin: 2rem 0; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq__q:hover { color: var(--accent); }
.faq__q::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.faq__item.open .faq__q::after { content: "\2212"; }
.faq__a {
  display: none;
  padding: 0 0 1rem;
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.faq__item.open .faq__a { display: block; }

/* ========================================
   Related Reviews
   ======================================== */
.related {
  margin: 2.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.related__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}
.related__card {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  transition: background .15s, border-color .15s, box-shadow .15s;
  text-decoration: none;
}
.related__card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.related__card-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--border);
}
.related__card-info { flex: 1; min-width: 0; }
.related__card-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .3rem;
}
.related__card-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.related__card-tagline {
  font-size: .78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========================================
   Author Box
   ======================================== */
.author-box {
  display: flex;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin: 2rem 0;
}
.author-box__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-box__name {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .15rem;
}
.author-box__credential {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .35rem;
}
.author-box__bio {
  font-size: .85rem;
  color: var(--text-dim);
  margin: 0;
}

/* --- Last Updated --- */
.updated-date {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.updated-date time { font-weight: 600; }

/* ========================================
   Sticky CTA Bar (review pages — always visible)
   ======================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid var(--border);
  padding: 0;
  z-index: 99;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: .6rem 1.5rem;
}
.sticky-cta__logo {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--bg-card);
}
.sticky-cta__name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.sticky-cta__score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.sticky-cta__pros {
  display: flex;
  gap: .35rem;
  flex: 1;
  flex-wrap: wrap;
  min-width: 0;
}
.sticky-cta__pro-tag {
  font-size: .72rem;
  color: var(--accent);
  background: rgba(26, 127, 55, .08);
  padding: .2rem .6rem;
  border-radius: 20px;
  white-space: nowrap;
}
.sticky-cta__btn {
  margin-left: auto;
  flex-shrink: 0;
}

/* --- Section spacing --- */
.section { padding: 2.5rem 0; }
.section__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.footer__col-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__list li { margin-bottom: .35rem; }
.footer__list a {
  font-size: .85rem;
  color: var(--text-dim);
}
.footer__list a:hover { color: var(--text); }
.footer__bottom {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: .75rem;
  color: var(--text-muted);
}
.footer__disclaimer {
  font-size: .7rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.5;
}

/* Add footer padding when sticky CTA is shown */
.page-review .footer { padding-bottom: 5rem; }

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1100px) {
  .review-card {
    grid-template-columns: auto 90px 1fr auto;
    gap: 1rem;
  }
  .review-card__logo { width: 90px; height: 60px; }
}

@media (max-width: 900px) {
  .layout-with-sidebar {
    grid-template-columns: 1fr;
  }
  .sidebar { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .review-card {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .review-card__rank { text-align: left; font-size: 1.2rem; }
  .review-card__logo { width: 160px; height: 100px; margin: 0 auto; }
  .review-card__actions {
    flex-direction: row;
    gap: .5rem;
  }
  .review-card__actions .btn { flex: 1; }

  /* Sticky CTA: hide pros on tablet */
  .sticky-cta__pros { display: none; }
}

@media (max-width: 640px) {
  html { font-size: 15px; }

  .header__nav { display: none; }
  .header__burger-btn { display: block; }

  .hero h1 { font-size: 1.6rem; }
  .hero__stats { gap: 1rem; }
  .hero__stat-num { font-size: 1.4rem; }

  .review-card { padding: 1.25rem; text-align: center; }
  .review-card__logo { width: 200px; height: 120px; margin: 0 auto .5rem; }
  .review-card__header { justify-content: center; flex-wrap: wrap; }
  .review-card__name { font-size: 1.25rem; }
  .review-card__tagline { text-align: center; }
  .review-card__pros { justify-content: center; }

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

  .verdict__top { flex-direction: column; }

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

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

  .compare-table { font-size: .78rem; }
  .compare-table thead th,
  .compare-table tbody td { padding: .5rem .35rem; }

  /* Sticky CTA mobile adjustments */
  .sticky-cta__name { font-size: .85rem; }
  .sticky-cta__pros { display: none; }

  /* WP columns stack on mobile */
  .content .wp-block-columns,
  .content .has-2-columns,
  .content [class*="columns"] {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ========================================
   Utility
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.gap-1 { gap: .5rem; }

/* --- Comparison Table --- */
.compare {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.compare h2 { margin-bottom: .5rem; }
.compare__intro {
  color: var(--text-dim);
  font-size: .9rem;
  margin-bottom: 1.25rem;
}
.compare__table-wrap { overflow-x: auto; }
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.compare__table th {
  text-align: left;
  padding: .5rem .6rem;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-dim);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.compare__table td {
  padding: .5rem .6rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.compare__current {
  background: rgba(26, 127, 55, .1);
  font-weight: 600;
}
.compare__current td {
  border-bottom: 2px solid var(--accent);
  padding-top: .65rem;
  padding-bottom: .65rem;
}
.compare__current .compare__name strong {
  font-size: .95rem;
  color: var(--accent-dim);
}
.compare__current .compare__tag {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}
.compare__name {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.compare__logo {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: cover;
}
.compare__name a {
  color: var(--text-link);
  text-decoration: none;
}
.compare__name a:hover { text-decoration: underline; }
.compare__up {
  color: var(--score-good);
  font-size: .7rem;
  margin-left: .2rem;
}
.compare__down {
  color: var(--text-muted);
  font-size: .7rem;
  margin-left: .2rem;
}
.compare__tag {
  display: inline-block;
  padding: .15rem .45rem;
  background: var(--bg-card-hover);
  border-radius: 4px;
  font-size: .78rem;
  color: var(--text-dim);
  white-space: nowrap;
}
.compare__note-row td {
  padding: .25rem .6rem .7rem;
  border-bottom: 1px solid var(--border);
}
.compare__note {
  font-size: .82rem;
  color: var(--text-dim);
  line-height: 1.45;
}
.compare__current + .compare__note-row { display: none; }

/* Mobile cards — hidden on desktop */
.compare__mobile { display: none; }

.compare-card {
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
}
.compare-card:last-child { border-bottom: none; }
.compare-card--current {
  background: rgba(26, 127, 55, .1);
  border-radius: var(--radius);
  padding: .7rem .6rem !important;
  margin: .25rem -.3rem;
}
.compare-card__head {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .3rem;
}
.compare-card__logo {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: cover;
}
.compare-card__name {
  flex: 1;
  font-size: .92rem;
  color: var(--text-link);
  text-decoration: none;
}
.compare-card--current .compare-card__name {
  color: var(--accent-dim);
  font-size: .95rem;
}
.compare-card__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: .15rem .6rem;
  font-size: .8rem;
  margin-bottom: .3rem;
}
.compare-card__metrics em {
  font-style: normal;
  font-weight: 600;
  color: var(--text-dim);
  font-size: .73rem;
  margin-right: .15rem;
}
.compare-card--current .compare__tag {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}
.compare-card__note {
  font-size: .8rem;
  line-height: 1.4;
  color: var(--text-dim);
  margin-top: .3rem;
}

@media (max-width: 768px) {
  .compare { padding: .75rem; }
  .compare__desktop { display: none; }
  .compare__mobile { display: block; }
}
