/* ============================================================
   VETERAN HANDYMAN BLOG — Styles
   Extends the main design system from index.css
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --navy: #1b2a4a;
  --navy-deep: #0f1a2e;
  --navy-light: #2a3f6a;
  --red: #c0392b;
  --red-dark: #962d22;
  --gold: #c9a84c;
  --gold-light: #e0c36a;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --cream: #faf8f2;
  --text: #1a1a2e;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --shadow: rgba(15,26,46,0.12);
  --shadow-lg: rgba(15,26,46,0.2);
  --gradient-navy: linear-gradient(135deg, #1b2a4a 0%, #0f1a2e 100%);
  --gradient-hero: linear-gradient(160deg, #0f1a2e 0%, #1b2a4a 40%, #2a3f6a 100%);
  --gradient-gold: linear-gradient(135deg, #c9a84c, #e0c36a);
  --gradient-red: linear-gradient(135deg, #c0392b, #e74c3c);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================================
   SHARED UTILITY
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px; border: none; border-radius: var(--r-sm);
  font-family: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-primary {
  background: var(--gradient-red); color: #fff;
  box-shadow: 0 4px 15px rgba(192,57,43,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192,57,43,0.4);
}
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy); color: #fff;
}

/* ============================================================
   READING PROGRESS BAR
   ============================================================ */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: var(--gradient-gold);
  width: 0%; transition: width 0.1s linear;
}

/* ============================================================
   NAVIGATION (Blog version)
   ============================================================ */
.blog-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(15,26,46,0.97); backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.blog-nav .container {
  display: flex; align-items: center; justify-content: space-between;
}
.blog-nav-brand {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
}
.blog-nav-logo { height: 40px; width: auto; border-radius: 4px; }
.blog-nav-name {
  font-size: 15px; font-weight: 700; color: #fff; line-height: 1.2;
}
.blog-nav-name span {
  display: block; font-size: 10px; font-weight: 400;
  color: var(--gold); letter-spacing: 1px; text-transform: uppercase;
}
.blog-nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.blog-nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px;
  font-weight: 500; padding: 8px 16px; border-radius: 6px;
  transition: all 0.2s ease;
}
.blog-nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.blog-nav-links .nav-cta {
  background: var(--gradient-red) !important; color: #fff !important;
  border-radius: 8px !important; font-weight: 600 !important;
}
.blog-nav-phone {
  color: var(--gold-light); text-decoration: none; font-size: 16px;
  font-weight: 700; transition: color 0.2s ease; white-space: nowrap;
}
.blog-nav-phone:hover { color: #fff; }
.blog-mobile-toggle {
  display: none; background: none; border: none; color: #fff;
  font-size: 28px; cursor: pointer; padding: 4px;
}
@media (max-width: 768px) {
  .blog-mobile-toggle { display: block; }
  .blog-nav-phone { display: none; }
  .blog-nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(15,26,46,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 20px; gap: 4px;
  }
  .blog-nav-links.open { display: flex; }
  .blog-nav-links a { width: 100%; padding: 12px 16px; }
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding: 20px 0; font-size: 13px; color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--navy-light); text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs span { margin: 0 8px; color: var(--border); }

/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */
.blog-hero {
  background: var(--gradient-hero); padding: 100px 0 60px; text-align: center;
}
.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px); font-weight: 900;
  color: #fff; margin-bottom: 16px; line-height: 1.15;
}
.blog-hero p {
  font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px; padding: 60px 0 100px;
}
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: all 0.3s ease; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow);
}
.blog-card-image {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--text-muted); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
}
.blog-card-category {
  background: rgba(27,42,74,0.08); color: var(--navy);
  padding: 4px 10px; border-radius: 4px;
}
.blog-card-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 800; color: var(--navy);
  margin-bottom: 10px; line-height: 1.3;
  transition: color 0.2s ease;
}
.blog-card:hover h2 { color: var(--red); }
.blog-card-body p {
  font-size: 14px; color: var(--text-light); line-height: 1.7;
  margin-bottom: 20px; flex: 1;
}
.blog-card-read {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--red);
  text-decoration: none; transition: gap 0.2s ease;
}
.blog-card:hover .blog-card-read { gap: 10px; }

/* ============================================================
   ARTICLE PAGE — HERO
   ============================================================ */
.article-hero {
  background: var(--gradient-hero); padding: 120px 0 60px;
}
.article-hero .container { max-width: 800px; }
.article-category-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
  font-size: 12px; font-weight: 700; color: var(--gold-light);
  text-transform: uppercase; letter-spacing: 1px;
}
.article-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 46px); font-weight: 900;
  color: #fff; margin-bottom: 20px; line-height: 1.15;
}
.article-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,0.6);
}
.article-meta-item { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   ARTICLE PAGE — CONTENT LAYOUT
   ============================================================ */
.article-layout {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 60px; padding: 60px 0 100px; align-items: start;
}
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { order: 1; }
}
.article-content { max-width: 100%; min-width: 0; overflow: hidden; }

/* Article Typography */
.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 800; color: var(--navy);
  margin: 48px 0 16px; padding-top: 16px;
  border-top: 1px solid var(--border); line-height: 1.3;
}
.article-content h2:first-of-type { border-top: none; margin-top: 0; }
.article-content h3 {
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin: 32px 0 12px; line-height: 1.3;
}
.article-content p {
  font-size: 16px; color: var(--text); line-height: 1.8;
  margin-bottom: 20px;
}
.article-content ul, .article-content ol {
  margin: 0 0 24px 24px; font-size: 16px; line-height: 1.8;
  color: var(--text);
}
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--navy); }
.article-content a:not(.btn) {
  color: var(--red); text-decoration: underline;
  text-decoration-color: rgba(192,57,43,0.3);
  transition: text-decoration-color 0.2s ease;
}
.article-content a:not(.btn):hover { text-decoration-color: var(--red); }
.article-content img {
  width: 100%; border-radius: var(--r-md); margin: 24px 0;
  box-shadow: 0 8px 30px var(--shadow);
}
.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px; margin: 24px 0;
  background: var(--cream); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic; color: var(--navy);
}

/* Info Box / Callout */
.info-box {
  background: var(--cream); border: 1px solid var(--border);
  border-left: 4px solid var(--gold); border-radius: var(--r-sm);
  padding: 24px 28px; margin: 32px 0;
}
.info-box h4 {
  font-size: 16px; font-weight: 700; color: var(--navy);
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.info-box p { font-size: 14px; margin-bottom: 0; }

/* CTA Box within articles */
.article-cta {
  background: var(--gradient-navy); border-radius: var(--r-lg);
  padding: 40px; text-align: center; margin: 40px 0;
}
.article-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 12px;
}
.article-cta p {
  font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 24px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.article-cta .btn-primary { font-size: 16px; padding: 16px 36px; }

/* Cost Table */
.cost-table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  border-radius: var(--r-sm); overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
}
.cost-table thead { background: var(--navy); color: #fff; }
.cost-table th {
  padding: 14px 20px; text-align: left;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.cost-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text);
}
.cost-table tbody tr:nth-child(even) { background: var(--cream); }
.cost-table tbody tr:hover { background: rgba(201,168,76,0.08); }

/* Comparison Table */
.comparison-table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  border-radius: var(--r-sm); overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
}
.comparison-table thead { background: var(--navy); color: #fff; }
.comparison-table th {
  padding: 14px 16px; text-align: center;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text); text-align: center;
}
.comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--navy); }
.comparison-table tbody tr:nth-child(even) { background: var(--cream); }
.comparison-table .check { color: #059669; font-weight: 700; }
.comparison-table .cross { color: var(--red); font-weight: 700; }

/* Checklist */
.checklist {
  list-style: none; margin: 24px 0; padding: 0;
}
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 16px; border-radius: var(--r-sm);
  margin-bottom: 4px; font-size: 15px; line-height: 1.6;
  transition: background 0.2s ease;
}
.checklist li:hover { background: var(--cream); }
.checklist-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(52,211,153,0.12); display: flex;
  align-items: center; justify-content: center;
  font-size: 14px; color: #059669; margin-top: 2px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.article-sidebar { position: sticky; top: 80px; }

/* Table of Contents */
.toc {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 24px; margin-bottom: 24px;
}
.toc h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--navy); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.toc-list { list-style: none; }
.toc-list li { margin-bottom: 4px; }
.toc-list a {
  display: block; padding: 8px 12px; border-radius: 6px;
  font-size: 13px; color: var(--text-light); text-decoration: none;
  transition: all 0.2s ease; border-left: 2px solid transparent;
}
.toc-list a:hover { color: var(--navy); background: rgba(27,42,74,0.04); }
.toc-list a.active {
  color: var(--navy); font-weight: 600;
  border-left-color: var(--gold); background: rgba(201,168,76,0.08);
}
.toc-list .toc-h3 { padding-left: 24px; font-size: 12px; }

/* Sidebar CTA */
.sidebar-cta {
  background: var(--gradient-navy); border-radius: var(--r-md);
  padding: 28px; text-align: center;
}
.sidebar-cta h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px;
}
.sidebar-cta p {
  font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 20px; line-height: 1.6;
}
.sidebar-cta .btn { width: 100%; font-size: 14px; padding: 12px 20px; }
.sidebar-cta .sidebar-phone {
  display: block; margin-top: 12px; color: var(--gold-light);
  font-size: 15px; font-weight: 700; text-decoration: none;
}
.sidebar-cta .sidebar-phone:hover { color: #fff; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { margin: 48px 0; }
.faq-section h2 { border-top: none; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-sm);
  margin-bottom: 8px; overflow: hidden;
}
.faq-question {
  width: 100%; background: var(--cream); border: none;
  padding: 18px 20px; text-align: left; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 600;
  color: var(--navy); display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  transition: background 0.2s ease;
}
.faq-question:hover { background: rgba(201,168,76,0.1); }
.faq-arrow {
  font-size: 12px; transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 500px; padding: 0 20px 20px;
}
.faq-answer p {
  font-size: 14px; color: var(--text-light); line-height: 1.7;
  margin-bottom: 0; padding-top: 4px;
}

/* ============================================================
   AUTHOR BIO
   ============================================================ */
.author-bio {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 28px; margin: 48px 0;
}
.author-avatar {
  width: 100px; min-width: 100px; height: auto; max-height: 120px;
  border-radius: var(--r-sm); flex-shrink: 0;
  object-fit: cover; object-position: top center;
  border: 3px solid var(--gold);
}
.author-info { min-width: 0; }
.author-info h4 {
  font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px;
}
.author-info p {
  font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 0;
  word-wrap: break-word; overflow-wrap: break-word;
}
@media (max-width: 500px) {
  .author-bio { flex-direction: column; align-items: center; text-align: center; }
  .author-avatar { width: 88px; min-width: 88px; }
}

/* ============================================================
   RELATED ARTICLES
   ============================================================ */
.related-articles {
  padding: 80px 0; background: var(--cream);
  border-top: 1px solid var(--border);
}
.related-articles h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 800; color: var(--navy);
  text-align: center; margin-bottom: 40px;
}
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ============================================================
   BLOG FOOTER
   ============================================================ */
.blog-footer {
  background: var(--gradient-navy); color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.blog-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 40px;
}
@media (max-width: 768px) { .blog-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .blog-footer-grid { grid-template-columns: 1fr; } }
.blog-footer-brand .blog-footer-logo { height: 56px; margin-bottom: 16px; border-radius: 6px; }
.blog-footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.blog-footer h4 {
  font-size: 14px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.blog-footer ul { list-style: none; }
.blog-footer li { margin-bottom: 10px; }
.blog-footer a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 14px; transition: color 0.2s ease;
  word-break: break-word; overflow-wrap: break-word;
}
.blog-footer a:hover { color: var(--gold-light); }
.blog-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; text-align: center; font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE
   ============================================================ */

/* ---- Tablet (max 900px) ---- */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px; padding: 40px 0 60px;
  }
  .article-hero { padding: 90px 0 48px; }
  .article-hero h1 { font-size: clamp(26px, 5vw, 38px); }
  .article-layout { gap: 40px; }
  .related-articles { padding: 50px 0; }
  .related-articles h2 { font-size: 26px; margin-bottom: 28px; }
  .related-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
}

/* ---- Mobile (max 600px) ---- */
@media (max-width: 600px) {
  .container { padding: 0 16px; }

  /* Blog listing */
  .blog-hero { padding: 80px 0 40px; }
  .blog-hero h1 { font-size: 28px; }
  .blog-hero p { font-size: 15px; }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px; padding: 30px 0 50px;
  }
  .blog-card-body { padding: 20px; }
  .blog-card-body h2 { font-size: 18px; }

  /* Article hero */
  .article-hero { padding: 76px 0 32px; }
  .article-hero h1 { font-size: 24px; line-height: 1.25; margin-bottom: 14px; }
  .article-category-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 14px; }
  .article-meta { gap: 12px; font-size: 12px; }

  /* Article content */
  .article-content h2 { font-size: 22px; margin: 32px 0 12px; }
  .article-content h3 { font-size: 17px; margin: 24px 0 10px; }
  .article-content p { font-size: 15px; line-height: 1.7; }
  .article-content ul, .article-content ol { font-size: 15px; margin-left: 16px; }
  .article-content img { border-radius: var(--r-sm); margin: 16px 0; }
  .article-content blockquote { padding: 14px 18px; font-size: 15px; }

  /* Info box */
  .info-box { padding: 18px 20px; margin: 24px 0; }
  .info-box h4 { font-size: 15px; }
  .info-box p { font-size: 13px; }

  /* CTA */
  .article-cta { padding: 28px 20px; margin: 28px 0; border-radius: var(--r-md); }
  .article-cta h3 { font-size: 20px; }
  .article-cta p { font-size: 14px; margin-bottom: 18px; }
  .article-cta .btn-primary { font-size: 14px; padding: 14px 24px; width: 100%; }

  /* Tables — horizontal scroll on mobile */
  .cost-table, .comparison-table {
    display: block; overflow-x: auto; -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .cost-table th, .cost-table td,
  .comparison-table th, .comparison-table td {
    padding: 10px 14px; font-size: 13px;
  }

  /* Checklist */
  .checklist li { padding: 10px 12px; font-size: 14px; }
  .checklist-icon { width: 20px; height: 20px; font-size: 12px; }

  /* FAQ */
  .faq-question { padding: 14px 16px; font-size: 14px; }
  .faq-answer p { font-size: 13px; }
  .faq-section { margin: 32px 0; }

  /* Sidebar CTA */
  .sidebar-cta { padding: 24px 20px; }
  .sidebar-cta h4 { font-size: 18px; }

  /* TOC */
  .toc { padding: 18px; }
  .toc-list a { font-size: 12px; padding: 6px 10px; }

  /* Related articles */
  .related-articles { padding: 40px 0; }
  .related-articles h2 { font-size: 24px; margin-bottom: 24px; }
  .related-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Footer */
  .blog-footer { padding: 40px 0 0; }
  .blog-footer-grid { gap: 28px; }

  /* Breadcrumbs */
  .breadcrumbs { padding: 14px 0; font-size: 12px; }

  /* Buttons */
  .btn { padding: 12px 24px; font-size: 14px; }
}

/* ---- Small phones (max 400px) ---- */
@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .article-hero h1 { font-size: 21px; }
  .article-content h2 { font-size: 20px; }
  .blog-card-body h2 { font-size: 16px; }
  .blog-footer-grid { gap: 20px; }
}
