/* ── BLOG STYLES ── */

/* Hero */
.blog-hero {
  background: linear-gradient(135deg, #0a2463 0%, #1e3a7a 100%);
  padding: 52px 24px 44px;
  color: #fff;
}

.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #94aed4;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.blog-breadcrumb a {
  color: #94aed4;
  text-decoration: none;
}

.blog-breadcrumb a:hover { color: #fff; }

.blog-breadcrumb span { color: #5a78a8; }

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.blog-category-tag {
  background: #1e88e5;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-date,
.blog-read-time {
  font-size: 0.82rem;
  color: #94aed4;
}

.blog-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 820px;
}

.blog-subtitle {
  font-size: 1.05rem;
  color: #b8ccee;
  line-height: 1.65;
  max-width: 700px;
  margin-bottom: 24px;
}

.blog-author-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.blog-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  display: block;
}

.blog-author-note {
  font-size: 0.8rem;
  color: #94aed4;
  display: block;
}

/* Blog sections */
.blog-section {
  padding: 56px 24px;
  background: #fff;
}

.blog-section-alt {
  background: #f7f9fc;
}

.blog-h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #0a2463;
  margin-bottom: 20px;
}

.blog-intro-p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 760px;
}

/* Prose blocks */
.blog-prose p {
  color: #374151;
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 780px;
}

.blog-prose h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #0a2463;
  margin-bottom: 18px;
  margin-top: 8px;
}

/* Quick Verdict Box */
.verdict-box {
  background: #fff;
  border: 2px solid #e2e8f3;
  border-radius: 16px;
  overflow: hidden;
}

.verdict-box-header {
  background: #0a2463;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.verdict-compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.verdict-product {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.verdict-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 14px;
}

.verdict-product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a2463;
  margin-bottom: 10px;
}

.verdict-badge-wrap {
  margin-bottom: 14px;
}

.verdict-pros {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.88rem;
  color: #374151;
  width: 100%;
}

.verdict-pros li::before {
  content: '✓ ';
  color: #16a34a;
  font-weight: 700;
}

.verdict-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #94a3b8;
  padding: 28px 12px;
  border-left: 1px solid #e2e8f3;
  border-right: 1px solid #e2e8f3;
  align-self: stretch;
}

/* Head-to-head blocks */
.hth-block {
  border: 1px solid #e2e8f3;
  border-radius: 14px;
  overflow: hidden;
}

.hth-block-header {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.hth-green { background: #16a34a; }
.hth-blue  { background: #1e88e5; }
.hth-red   { background: #dc2626; }

.hth-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 3px;
}

.hth-content {
  padding: 22px 24px;
  background: #fff;
}

.hth-content p {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 100%;
}

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

/* Choose grid */
.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.choose-card {
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.choose-card-green { background: #f0fdf4; border: 2px solid #bbf7d0; }
.choose-card-blue  { background: #eff6ff; border: 2px solid #bfdbfe; }

.choose-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 16px;
}

.choose-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a2463;
  margin-bottom: 16px;
}

.choose-card .ing-checks {
  text-align: left;
  width: 100%;
}

/* Final CTA row */
.final-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.rec-cta-secondary {
  background: #fff;
  color: #0a2463;
  border: 2px solid #0a2463;
}

.rec-cta-secondary:hover {
  background: #0a2463;
  color: #fff;
}

/* Review verdict body */
.review-verdict-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
}

.review-verdict-product {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid #e2e8f3;
}

.review-verdict-scores {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.score-row {
  display: grid;
  grid-template-columns: 160px 1fr 90px;
  align-items: center;
  gap: 12px;
}

.score-label {
  font-size: 0.88rem;
  color: #374151;
  font-weight: 500;
}

.score-bar-wrap {
  background: #e2e8f3;
  border-radius: 99px;
  height: 8px;
  overflow: hidden;
}

.score-bar {
  height: 100%;
  border-radius: 99px;
  transition: width 0.6s ease;
}

.score-val {
  font-size: 0.82rem;
  font-weight: 600;
  color: #16a34a;
  text-align: right;
}

.score-val-red  { color: #dc2626; }
.score-val-orange { color: #d97706; }

.review-quick-summary {
  background: #f0f4fb;
  border-left: 4px solid #0a2463;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.65;
  margin-top: 6px;
}

/* Dose compare blocks */
.dose-compare {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
  background: #f7f9fc;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.84rem;
}

.dose-label {
  font-weight: 600;
  color: #374151;
}

.dose-val {
  color: #4a5568;
}

.dose-verdict {
  width: 100%;
  font-weight: 600;
  font-size: 0.82rem;
  padding-top: 4px;
}

.dose-under { color: #dc2626; }
.dose-borderline { color: #d97706; }
.dose-good { color: #16a34a; }

.ing-block-content {
  padding: 16px 20px;
}

/* Blog index grid */
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  border: 1px solid #e2e8f3;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  box-shadow: 0 8px 32px rgba(10,36,99,0.10);
  transform: translateY(-3px);
}

.blog-card-coming {
  border-style: dashed;
  background: #fafbfd;
  cursor: default;
}

.blog-card-coming:hover {
  box-shadow: none;
  transform: none;
}

.blog-card-img-wrap {
  background: #f0f4fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 0;
  min-height: 160px;
}

.blog-card-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.blog-card-img-overlap {
  margin-left: -24px;
}

.blog-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a2463;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.65;
  flex: 1;
}

.blog-card-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e88e5;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 680px) {
  .verdict-compare-grid {
    grid-template-columns: 1fr;
  }
  .verdict-vs {
    border: none;
    border-top: 1px solid #e2e8f3;
    border-bottom: 1px solid #e2e8f3;
    padding: 14px;
    align-self: auto;
  }
  .choose-grid {
    grid-template-columns: 1fr;
  }
  .final-cta-row {
    flex-direction: column;
  }
  .blog-title {
    font-size: 1.4rem;
  }
}
