/* ============================================================
   VLink Business — blog-specific styles.
   Loaded AFTER assets/css/site.css. Uses the same design tokens
   (--navy, --teal, --gold, fonts, spacing) — no new palette,
   no new type system. Only adds the components the blog needs:
   article cards, category tags, prose typography, breadcrumbs,
   pagination and a related-articles grid.
   ============================================================ */

/* ---------- blog hero / index ---------- */
.blog-hero{
  padding: 64px 0 8px;
}
.blog-hero .eyebrow{ margin-bottom: 10px; }
.blog-hero .lede{ margin-top: 14px; }

/* ---------- category tag (reuses the tag look from cover-card) ---------- */
.category-tag{
  font-size: 0.74rem; font-weight:600; color: var(--teal-deep);
  background: var(--teal-tint);
  display:inline-block; padding: 4px 10px; border-radius: 999px;
  width: fit-content;
}

/* ---------- article card grid (blog index) ---------- */
.article-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.article-card{
  display:flex; flex-direction:column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow:hidden;
  text-decoration:none; color: var(--navy);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.article-card:hover{ border-color: var(--teal); transform: translateY(-2px); }
.article-card .article-card-media{
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, #16324f 100%);
  display:flex; align-items:center; justify-content:center;
  position: relative;
}
.article-card .article-card-media svg{ width: 46px; height:46px; opacity:0.9; }
.article-card-body{ padding: 22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.article-card time{ font-size:0.8rem; color: var(--navy-soft); }
.article-card h3{ margin: 2px 0 0; font-size:1.08rem; }
.article-card p{ color: var(--navy-soft); font-size:0.92rem; margin:0; flex:1; }
.article-card .read-more{ font-weight:600; font-size:0.88rem; color: var(--teal-deep); margin-top:4px; }

/* ---------- pagination ---------- */
.blog-pagination{
  display:flex; justify-content:center; align-items:center; gap:10px;
  margin-top: 48px;
}
.blog-pagination a, .blog-pagination span{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:38px; height:38px; padding:0 10px;
  border-radius: var(--radius-s); border:1px solid var(--line);
  text-decoration:none; color: var(--navy); font-size:0.9rem; font-weight:600;
}
.blog-pagination a:hover{ border-color: var(--teal); }
.blog-pagination .is-current{ background: var(--navy); color:#fff; border-color: var(--navy); }
.blog-pagination .is-disabled{ opacity:0.4; pointer-events:none; }

/* ---------- breadcrumb ---------- */
.breadcrumb{
  font-size:0.86rem; color: var(--navy-soft);
  display:flex; gap:8px; align-items:center; margin-bottom: 22px; flex-wrap:wrap;
}
.breadcrumb a{ color: var(--navy-soft); text-decoration:none; }
.breadcrumb a:hover{ color: var(--teal-deep); text-decoration:underline; }
.breadcrumb .sep{ color: var(--line); }
.breadcrumb .current{ color: var(--navy); font-weight:600; }

/* ---------- article page layout ---------- */
.article-header{ padding: 48px 0 8px; }
.article-header .category-tag{ margin-bottom: 16px; }
.article-header h1{ margin-bottom: 14px; }
.article-meta{
  display:flex; gap:18px; flex-wrap:wrap; align-items:center;
  font-size:0.88rem; color: var(--navy-soft);
  padding-bottom: 28px; margin-bottom: 8px; border-bottom:1px solid var(--line);
}
.article-meta .dot{ width:4px; height:4px; border-radius:50%; background: var(--line); }

.article-body{
  max-width: 720px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--navy);
}
.article-body p{ margin: 0 0 22px; }
.article-body h2{
  font-size: 1.5rem; margin: 44px 0 16px;
}
.article-body h3{
  font-size: 1.18rem; margin: 32px 0 12px;
}
.article-body ul, .article-body ol{ margin: 0 0 22px; padding-left: 1.3em; }
.article-body li{ margin-bottom: 8px; }
.article-body a{ color: var(--teal-deep); text-decoration: underline; text-underline-offset:2px; }
.article-body .btn{ text-decoration: none; }
.article-body table{
  width:100%; border-collapse:collapse; margin: 8px 0 28px; font-size:0.95rem;
}
.article-body th, .article-body td{
  text-align:left; padding: 10px 14px; border-bottom:1px solid var(--line); vertical-align:top;
}
.article-body th{ color: var(--navy-soft); font-weight:600; font-size:0.85rem; }
.article-body blockquote{
  margin: 0 0 24px; padding: 4px 0 4px 20px; border-left: 3px solid var(--teal);
  color: var(--navy-soft); font-style: italic;
}

/* ---------- inline article CTA ---------- */
.article-cta{
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px 28px;
  margin: 8px 0 36px;
  max-width: 720px;
}
.article-cta p.eyebrow{ margin-bottom: 6px; }
.article-cta h3{ margin-bottom: 10px; }
.article-cta p{ color: var(--navy-soft); margin-bottom: 16px; }

/* ---------- author / publisher line ---------- */
.article-byline{
  display:flex; align-items:center; gap:12px;
  padding: 28px 0; margin: 40px 0 0; border-top:1px solid var(--line);
  max-width:720px; font-size:0.9rem; color: var(--navy-soft);
}
.article-byline b{ color: var(--navy); }

/* ---------- related articles ---------- */
.related-articles{ margin-top: 8px; }
.related-articles h2{ font-size:1.3rem; margin-bottom:20px; }

/* ---------- back to blog ---------- */
.back-to-blog{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:600; font-size:0.92rem; color: var(--navy);
  text-decoration:none; margin-bottom: 18px;
}
.back-to-blog:hover{ color: var(--teal-deep); }

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .article-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .article-grid{ grid-template-columns: 1fr; }
  .article-header{ padding-top: 32px; }
  .article-body{ font-size: 1rem; }
}

/* ---------- hub-page-specific additions (Business Insurance Review) ---------- */
.cover-card-link{ margin-top:4px; font-weight:600; font-size:0.9rem; color: var(--teal-deep); text-decoration:none; display:inline-block; }
.cover-card-link:hover{ text-decoration:underline; }

/* Anchor jumps (category cards, in-page "how it works" link) land below
   the sticky header instead of tucked underneath it. */
[id]{ scroll-margin-top: 90px; }
