/* ============================================================
   GUIDE / ARTICLE PAGES — guide.css
   Covers listicles, comparisons, how-to guides.
   Loaded after site.css and sections.css.
============================================================ */

/* --- Article hero --- */
.guide-hero {
  padding: 6rem 0 3rem;
  text-align: center;
}
.guide-hero .eyebrow { margin-bottom: 1rem; }
.guide-hero h1 { max-width: 720px; margin: 0 auto 1.2rem; }
.guide-hero .sub {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary, #555);
}
.guide-meta {
  font-size: 0.85rem;
  color: var(--text-tertiary, #888);
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* --- Article body --- */
.guide-body {
  max-width: 740px;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.guide-body h2 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 3rem 0 1rem;
  line-height: 1.3;
}
.guide-body h3 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  line-height: 1.35;
}
.guide-body p {
  margin: 0 0 1rem;
  line-height: 1.7;
}
.guide-body ul, .guide-body ol {
  margin: 0 0 1.2rem 1.2rem;
  line-height: 1.7;
}
.guide-body li { margin-bottom: 0.4rem; }

/* --- Disclosure banner --- */
.disclosure {
  background: var(--surface-alt, #f0ece4);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-secondary, #555);
}

/* --- Comparison table --- */
.compare-wrap {
  overflow-x: auto;
  margin: 1.5rem 0 2rem;
  border-radius: 8px;
  border: 1px solid var(--border, #e0dcd4);
}
.compare-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.5;
}
.compare-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--surface-alt, #f0ece4);
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid var(--border, #e0dcd4);
}
.compare-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border, #e0dcd4);
  vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .highlight-row {
  background: var(--orange-tint, rgba(232, 126, 58, 0.06));
}

/* --- Product card (per-product review) --- */
.product-review {
  border: 1px solid var(--border, #e0dcd4);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.product-review h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-pill {
  display: inline-block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: var(--surface-alt, #f0ece4);
  color: var(--text-secondary, #555);
  vertical-align: middle;
}
.product-pill-self {
  background: var(--orange, #e87e3a);
  color: #fff;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.product-grid dt {
  font-weight: 600;
  color: var(--text-secondary, #555);
}
.product-grid dd { margin: 0; }
.product-verdict {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border, #e0dcd4);
  font-style: italic;
  color: var(--text-secondary, #555);
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .guide-hero { padding: 4rem 0 2rem; }
  .guide-body h2 { font-size: 1.35rem; }
}
