/* ── Blog Article Styles ── */
/* Scoped under .article to avoid conflicts with site-wide CSS */

.article {
  background: #f5f4f0;
  color: #1a1a18;
  line-height: 1.7;
  font-size: 16px;
}

.article .article-page {
  max-width: 760px;
  margin: 3rem auto;
  padding: 0 1.5rem 4rem;
}

.article .brand {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888780;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article .brand::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #1D9E75;
}

.article .article-hero { border-bottom: 1px solid #dddbd3; padding-bottom: 2rem; margin-bottom: 2rem; }

.article .article-hero h1 {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a18;
  margin-bottom: 0.75rem;
}

.article .article-hero .sub {
  font-size: 16px;
  color: #5F5E5A;
  max-width: 600px;
  margin-bottom: 1.25rem;
}

.article .meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.article .meta-item { font-size: 13px; color: #888780; }
.article .meta-item strong { color: #1a1a18; font-weight: 500; }

.article .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 2rem 0;
}
.article .stat {
  background: #fff;
  border: 1px solid #e4e2da;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  display: block;
  flex-direction: unset;
}
.article .stat-label { font-size: 12px; color: #888780; margin-bottom: 4px; }
.article .stat-value { font-size: 24px; font-weight: 600; color: #1a1a18; }
.article .stat-note { font-size: 11px; color: #aaa9a2; margin-top: 2px; }

.article hr.divider {
  border: none;
  border-top: 1px solid #dddbd3;
  margin: 2rem 0;
}

.article .article-section { margin-bottom: 2rem; }
.article .article-section h2 {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a18;
  margin-bottom: 0.75rem;
}
.article .article-section p {
  font-size: 15.5px;
  color: #444441;
  line-height: 1.8;
  margin-bottom: 0.85rem;
}
.article .article-section p:last-child { margin-bottom: 0; }

/* Prose content from PocketBase editor */
.article .prose h2 {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a18;
  margin: 2rem 0 0.75rem;
}
.article .prose h3 {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a18;
  margin: 1.5rem 0 0.5rem;
}
.article .prose p {
  font-size: 15.5px;
  color: #444441;
  line-height: 1.8;
  margin-bottom: 0.85rem;
}
.article .prose p:last-child { margin-bottom: 0; }
.article .prose ul,
.article .prose ol {
  margin: 0 0 1rem 1.5rem;
  color: #444441;
}
.article .prose li {
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}
.article .prose a { color: #1D9E75; text-decoration: underline; }
.article .prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 14px;
}
.article .prose th,
.article .prose td {
  padding: 0.6rem 0.8rem;
  border: 1px solid #e4e2da;
  text-align: left;
}
.article .prose th {
  background: #fff;
  font-weight: 500;
  color: #1a1a18;
}
.article .prose td {
  color: #444441;
}
.article .prose img {
  width: 100%;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.article .callout {
  border-left: 3px solid #1D9E75;
  padding: 0.8rem 1rem;
  background: #f0faf6;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0;
}
.article .callout p { font-size: 14px; color: #0F6E56; margin: 0; }
.article .callout.warn { border-left-color: #BA7517; background: #fef8ee; }
.article .callout.warn p { color: #854F0B; }
.article .callout.info { border-left-color: #378ADD; background: #eef5fc; }
.article .callout.info p { color: #185FA5; }

.article .verdict {
  background: #fff;
  border: 1px solid #e4e2da;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-top: 2rem;
}
.article .verdict h2 { font-size: 18px; font-weight: 500; margin-bottom: 1rem; }

.article .verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.article .verdict-col h3 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888780;
  margin-bottom: 0.6rem;
}
.article .verdict-col ul { list-style: none; }
.article .verdict-col ul li {
  font-size: 14px;
  color: #444441;
  padding: 5px 0;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  line-height: 1.5;
}
.article .verdict-col ul li .dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 5px;
}
.article .pros .dot { background: #1D9E75; }
.article .cons .dot { background: #BA7517; }

.article .verdict-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e4e2da;
  font-size: 14.5px;
  color: #5F5E5A;
  line-height: 1.75;
}
.article .verdict-footer strong { color: #1a1a18; font-weight: 500; }

/* Article-scoped affiliate box override */
.article .affiliate-box {
  background: #fff;
  border: 1px solid #e4e2da;
  border-color: #1D9E75;
}

.article .product-cta { margin: 2rem 0; text-align: center; }

.article .post-hero-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.article .back-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 14px;
  font-weight: 500;
  color: #888780;
}
.article .back-link:hover { color: #1a1a18; }

@media (max-width: 540px) {
  .article .article-hero h1 { font-size: 28px; }
  .article .stats { grid-template-columns: 1fr 1fr; }
  .article .verdict-grid { grid-template-columns: 1fr; }
  .article .meta { gap: 1rem; }
}
