/* ============================================================
   Leader Printing — blog styles
   ============================================================ */

/* ---- listing / hub ---- */
.blog-hero { padding: 80px 0 32px; background: var(--navy-50); }
.blog-hero h1 { color: var(--navy); font-size: clamp(40px, 6vw, 80px); line-height: 1.05; margin: 0 0 12px; }
.blog-hero h1 em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--ink-2); }
.blog-hero h1 .red { color: var(--red); }
.blog-hero .lede { font-size: 19px; color: var(--mid); max-width: 720px; line-height: 1.5; margin-top: 12px; }

.blog-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 24px 0; border-bottom: 1px solid #e8eaf0; }
.blog-tag {
  display: inline-block; padding: 6px 14px; border: 1px solid #d4d8e0;
  border-radius: 999px; font-size: 13px; color: var(--ink-2);
  text-decoration: none; transition: all .15s;
}
.blog-tag:hover, .blog-tag.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding: 48px 0;
}
@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: #fff; border: 1px solid #e8eaf0; border-radius: 14px;
  overflow: hidden; transition: all .2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--navy); box-shadow: 0 14px 32px rgba(11,42,91,.08); }
.blog-card a { text-decoration: none; color: inherit; }
.blog-card .thumb { aspect-ratio: 16/10; background: #f3f4f7; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card .body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--mid); margin-bottom: 10px; }
.blog-card h3 { font-size: 19px; line-height: 1.3; color: var(--navy); margin: 0 0 10px; }
.blog-card p { font-size: 14.5px; line-height: 1.55; color: var(--mid); margin: 0 0 16px; }
.blog-card .more { font-size: 14px; color: var(--red); font-weight: 600; margin-top: auto; }

/* ---- article page ---- */
.article-hero { padding: 60px 0 24px; }
.article-crumb { font-size: 13px; color: var(--mid); margin-bottom: 18px; }
.article-crumb a { color: var(--mid); text-decoration: none; }
.article-crumb a:hover { color: var(--navy); }
.article-crumb span { margin: 0 8px; color: var(--mid-2); }
.article-meta { font-size: 13px; color: var(--mid); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.article-meta span + span::before { content: "·"; margin: 0 10px; }
.article-title { font-size: clamp(34px, 5vw, 58px); line-height: 1.1; color: var(--navy); margin: 0 0 16px; }
.article-lede { font-size: 20px; line-height: 1.5; color: var(--ink-2); max-width: 760px; }
.article-cover { margin: 36px 0 8px; aspect-ratio: 16/9; background: #f3f4f7; overflow: hidden; border-radius: 12px; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-body { max-width: 760px; margin: 0 auto; padding: 32px 0 64px; font-size: 18px; line-height: 1.7; color: var(--ink-2); }
.article-body h2 { font-size: 30px; color: var(--navy); margin: 48px 0 16px; line-height: 1.25; }
.article-body h3 { font-size: 23px; color: var(--navy); margin: 36px 0 12px; line-height: 1.3; }
.article-body p { margin: 0 0 20px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--navy); }
.article-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 28px 0; display: block; }
.article-body figure { margin: 28px 0; }
.article-body figcaption { font-size: 14px; color: var(--mid); margin-top: 8px; text-align: center; }
.article-body blockquote {
  border-left: 3px solid var(--red); padding: 6px 0 6px 22px;
  margin: 24px 0; font-style: italic; color: var(--ink-2);
}
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.article-body th, .article-body td { padding: 10px 12px; border: 1px solid #e8eaf0; text-align: left; }
.article-body th { background: var(--navy-50); color: var(--navy); font-weight: 600; }

/* ---- inline RFQ CTA ---- */
.rfq-cta {
  background: var(--navy); color: #fff; padding: 32px 36px;
  border-radius: 14px; margin: 40px 0; display: flex;
  align-items: center; justify-content: space-between; gap: 24px;
}
.rfq-cta h3 { color: #fff; margin: 0 0 6px; font-size: 22px; }
.rfq-cta p { color: rgba(255,255,255,.78); margin: 0; font-size: 15px; max-width: 480px; }
.rfq-cta a {
  background: var(--red); color: #fff; padding: 14px 24px;
  border-radius: 999px; text-decoration: none; font-weight: 600;
  white-space: nowrap; transition: background .15s;
}
.rfq-cta a:hover { background: #b22020; }
@media (max-width: 640px) { .rfq-cta { flex-direction: column; align-items: flex-start; } }

/* ---- bottom CTA block ---- */
.article-end-cta {
  margin-top: 64px; padding: 56px 48px; border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy));
  color: #fff; text-align: center;
}
.article-end-cta h2 { color: #fff; font-size: 34px; margin: 0 0 14px; }
.article-end-cta h2 em { font-family: 'Instrument Serif', serif; font-style: italic; }
.article-end-cta p { color: rgba(255,255,255,.78); max-width: 600px; margin: 0 auto 24px; font-size: 16.5px; }
.article-end-cta .btn { background: var(--red); color: #fff; padding: 16px 32px; border-radius: 999px; text-decoration: none; font-weight: 600; display: inline-block; }
.article-end-cta .btn:hover { background: #b22020; }

/* ---- related ---- */
.related { padding: 48px 0 80px; border-top: 1px solid #e8eaf0; }
.related h3 { font-size: 22px; color: var(--navy); margin: 0 0 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 800px) { .related-grid { grid-template-columns: 1fr; } }
