/* ============================================================================
   Article — long-form comparison and explainer pages
   ============================================================================ */
html {
  background: var(--white);
}

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.article-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.article h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.article-meta {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 36px;
}

.article-meta span + span::before {
  content: "·";
  margin: 0 8px;
  color: var(--gray-350);
}

.article p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 18px;
}

.article h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 56px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--gray-900);
}

.article h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--gray-900);
}

.article ul,
.article ol {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px 22px;
}

.article li {
  margin-bottom: 6px;
}

.article a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article strong {
  color: var(--gray-900);
}

/* ============================================================================
   TL;DR callout
   ============================================================================ */
.tldr {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 32px 0 40px;
}

.tldr-title {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.tldr p {
  margin-bottom: 10px;
  font-size: 15px;
}

.tldr p:last-child {
  margin-bottom: 0;
}

/* ============================================================================
   Comparison table
   ============================================================================ */
.compare-table-wrap {
  overflow-x: auto;
  margin: 24px 0 32px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
}

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

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
  vertical-align: top;
}

.compare-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--gray-900);
  background: var(--gray-50);
}

.compare-table th:first-child {
  width: 36%;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table strong {
  color: var(--gray-900);
}

/* ============================================================================
   Verdict / pick callout
   ============================================================================ */
.pick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}

.pick-card {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px 22px;
  background: var(--white);
}

.pick-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1rem;
}

.pick-card p {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--gray-600);
}

@media (max-width: 640px) {
  .pick-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   CTA at end of article
   ============================================================================ */
.article-cta {
  margin: 56px 0 0;
  padding: 32px 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  text-align: center;
}

.article-cta h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.article-cta p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.article-cta-btns {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 640px) {
  .article {
    padding: 40px 16px 64px;
  }

  .article h1 {
    font-size: 2rem;
  }

  .article h2 {
    font-size: 1.3rem;
    margin-top: 40px;
  }
}
