/* =====================================================
   BLOG — Modern magazine-style layout (not A4 / not a case study)
===================================================== */

:root {
  --blog-blue: #1d4ed8;
  --blog-blue-light: #3b82f6;
  --blog-sky: #38bdf8;
  --blog-navy: #0f1e3d;
  --blog-bg: #ffffff;
  --blog-bg-soft: #f7f9fc;
  --blog-card: #ffffff;
  --blog-border: rgba(15, 30, 61, 0.08);
  --blog-muted: #5b6478;
  --blog-text: #1c2541;
  --blog-radius: 14px;
}

/* ---------- Listing hero ---------- */
.blog-hero {
  position: relative;
  padding: 110px 6% 80px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 14, 36, 0.94) 0%, rgba(15, 30, 61, 0.85) 60%, rgba(29, 78, 216, 0.6) 100%),
    url("https://images.unsplash.com/photo-1559494007-9f5847c49d94?auto=format&fit=crop&w=1900&q=80") center/cover no-repeat;
  background-color: var(--blog-navy);
}
.blog-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6, #38bdf8);
}
.blog-hero .blog-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.blog-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin: 0 auto 14px;
  max-width: 900px;
  line-height: 1.2;
  font-weight: 700;
}
.blog-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 768px) {
  .blog-hero { padding: 80px 5% 60px; }
}

/* ---------- Listing grid ---------- */
.blog-section {
  background: var(--blog-bg-soft);
  padding: 80px 4%;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.blog-card {
  background: var(--blog-card);
  border: 1px solid var(--blog-border);
  border-radius: var(--blog-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(15, 30, 61, 0.12);
}
.blog-card .blog-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e2e8f0;
  text-decoration: none;
}
.blog-card .blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}
.blog-card .blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blog-blue);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.blog-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card .blog-meta {
  font-size: 0.82rem;
  color: var(--blog-muted);
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.blog-card h3 {
  font-size: 1.18rem;
  line-height: 1.35;
  color: var(--blog-text);
  margin: 0 0 12px;
  font-weight: 700;
}
.blog-card h3 a {
  color: inherit;
  text-decoration: none;
}
.blog-card h3 a:hover { color: var(--blog-blue); }
.blog-card p {
  color: var(--blog-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}
.blog-card .blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blog-blue);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  align-self: flex-start;
}
.blog-card .blog-read-more i { transition: transform 0.2s ease; }
.blog-card .blog-read-more:hover i { transform: translateX(4px); }

/* =====================================================
   ARTICLE PAGE — magazine layout (wide, two-column on desktop)
===================================================== */

.article-page {
  background: var(--blog-bg);
}

/* Top hero — full-width featured image with title overlay */
.article-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: var(--blog-navy);
  overflow: hidden;
  margin-bottom: 0;
}
.article-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 14, 36, 0.45) 0%,
    rgba(8, 14, 36, 0.78) 70%,
    rgba(8, 14, 36, 0.92) 100%
  );
  z-index: 1;
}
.article-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 32px 50px;
  color: #fff;
}
.article-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}
.article-hero-inner h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 18px;
  max-width: 900px;
  color: #fff;
}
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}
.article-byline .by-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.article-byline .by-author { font-weight: 600; color: #fff; }
.article-byline span { display: inline-flex; align-items: center; gap: 6px; }
.article-byline .by-meta-dot { opacity: 0.5; }

@media (max-width: 768px) {
  .article-hero { min-height: 320px; }
  .article-hero-inner { padding: 50px 22px 36px; }
}

/* Article body wrapper — wide canvas with content + sidebar columns */
.article-canvas {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 32px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 56px;
}
@media (max-width: 991.98px) {
  .article-canvas {
    grid-template-columns: 1fr;
    padding: 36px 22px 60px;
    gap: 36px;
  }
}

/* The reading column — comfortable typography */
.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--blog-text);
}
.article-body > p:first-of-type::first-line {
  font-weight: 600;
}
.article-body p { margin: 0 0 1.3em; }
.article-body p strong { color: var(--blog-navy); font-weight: 700; }
.article-body a {
  color: var(--blog-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--blog-navy); }

/* Lead paragraph — distinguishes the intro */
.article-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--blog-navy);
  font-weight: 500;
  margin: 0 0 2em;
  padding-left: 18px;
  border-left: 3px solid var(--blog-blue);
}

.article-body h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  font-weight: 800;
  color: var(--blog-navy);
  margin: 2em 0 0.6em;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blog-text);
  margin: 1.6em 0 0.5em;
}
.article-body ul, .article-body ol {
  margin: 0 0 1.4em 0;
  padding-left: 22px;
}
.article-body ul li, .article-body ol li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.article-body ul li::marker { color: var(--blog-blue); }

/* Pull-quote inside the body */
.article-body blockquote,
.pull-quote {
  margin: 1.8em 0;
  padding: 22px 26px;
  background: linear-gradient(135deg, #f0f6ff, #eef2ff);
  border-left: 4px solid var(--blog-blue);
  border-radius: 10px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--blog-navy);
  font-style: italic;
}
.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--blog-muted);
  margin-top: 10px;
  font-weight: 500;
}

/* Inline figure (image with caption) — visual break */
.article-body figure {
  margin: 2em 0;
}
.article-body figure img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 30, 61, 0.12);
}
.article-body figure figcaption {
  font-size: 0.85rem;
  color: var(--blog-muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* Tables — readable, no longer A4-stretched */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  margin: 1.6em 0;
  background: #fff;
  border: 1px solid var(--blog-border);
  border-radius: 10px;
  overflow: hidden;
}
.article-body table th {
  background: #f6f9ff;
  text-align: left;
  padding: 12px 14px;
  font-weight: 700;
  color: var(--blog-navy);
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.article-body table td {
  padding: 12px 14px;
  border-top: 1px solid var(--blog-border);
  color: var(--blog-text);
  vertical-align: top;
}
.article-body table tr:hover td { background: #f8faff; }

/* Tip / note callout */
.article-body .tip {
  background: #fff8e6;
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 1.6em 0;
}
.article-body .tip strong {
  display: block;
  color: #92400e;
  margin-bottom: 6px;
  font-size: 0.86rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.article-body .tip p { margin: 0; color: #5c3a0a; }

/* Tag chips */
.article-tags {
  margin: 2.6em 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--blog-border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-tags .tag-chip {
  padding: 5px 12px;
  background: #eef2ff;
  color: var(--blog-blue);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}
.article-tags .tag-chip:hover { background: var(--blog-blue); color: #fff; }

/* Share row */
.article-share {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.88rem;
  color: var(--blog-muted);
}
.article-share .share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blog-navy);
  text-decoration: none;
  transition: all 0.2s ease;
}
.article-share .share-btn:hover {
  background: var(--blog-blue);
  color: #fff;
  transform: translateY(-2px);
}

/* Author block at the bottom */
.article-author {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 40px 0 0;
  padding: 24px;
  background: var(--blog-bg-soft);
  border-radius: 12px;
}
.article-author img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.article-author .author-name {
  font-weight: 700;
  color: var(--blog-text);
  margin: 0 0 4px;
}
.article-author .author-role {
  font-size: 0.88rem;
  color: var(--blog-muted);
  margin: 0;
}

/* Final CTA inside content */
.article-cta {
  background: linear-gradient(135deg, var(--blog-navy), var(--blog-blue));
  color: #fff;
  border-radius: 14px;
  padding: 36px 36px;
  text-align: center;
  margin: 36px 0 0;
}
.article-cta h3 {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 0 8px;
  font-weight: 700;
}
.article-cta p { color: rgba(255, 255, 255, 0.9); margin: 0 0 22px; font-size: 0.96rem; }
.article-cta .cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: var(--blog-blue);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.article-cta .cta-btn:hover { transform: translateY(-2px); background: #f6f9ff; }

/* =====================================================
   SIDEBAR — Sticky table of contents + share + related
===================================================== */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
  align-self: start;
  height: max-content;
}
@media (max-width: 991.98px) {
  .article-sidebar { position: static; }
}

.sidebar-box {
  background: var(--blog-bg-soft);
  border: 1px solid var(--blog-border);
  border-radius: 12px;
  padding: 22px 22px;
}
.sidebar-box h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--blog-blue);
  margin: 0 0 14px;
}
.sidebar-toc {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-toc li { margin-bottom: 8px; }
.sidebar-toc a {
  color: var(--blog-text);
  font-size: 0.92rem;
  text-decoration: none;
  display: block;
  padding: 6px 10px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}
.sidebar-toc a:hover,
.sidebar-toc a.active {
  background: #fff;
  border-left-color: var(--blog-blue);
  color: var(--blog-blue);
}

.sidebar-card {
  background: linear-gradient(135deg, var(--blog-navy), var(--blog-blue));
  color: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.sidebar-card h4 {
  color: #fff;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}
.sidebar-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  margin: 0 0 16px;
  line-height: 1.55;
}
.sidebar-card .sidebar-cta {
  display: inline-block;
  padding: 9px 18px;
  background: #fff;
  color: var(--blog-blue);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
}

/* Related posts — below content, full canvas width */
.related-posts {
  background: var(--blog-bg-soft);
  padding: 60px 4%;
  border-top: 1px solid var(--blog-border);
}
.related-posts-inner { max-width: 1280px; margin: 0 auto; }
.related-posts h3 {
  font-size: 1.4rem;
  margin: 0 0 24px;
  color: var(--blog-text);
  font-weight: 800;
}

@media (max-width: 768px) {
  .article-canvas { padding: 32px 18px 50px; }
  .article-body { font-size: 1rem; }
  .article-lead { font-size: 1.08rem; }
  .article-cta { padding: 28px 22px; }
}

/* =====================================================
   FULL RESPONSIVE COVERAGE — every device size
===================================================== */

/* Large desktop (≥1400px) — give content a touch more room */
@media (min-width: 1400px) {
  .article-canvas {
    max-width: 1280px;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 64px;
  }
  .blog-grid { max-width: 1380px; }
  .article-hero-inner { max-width: 1280px; }
  .article-body { font-size: 1.08rem; }
}

/* Standard desktop (1200-1399px) — default rules already fine */

/* Small desktop (992-1199px) — slightly tighter sidebar */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .article-canvas {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 44px;
    padding: 44px 28px 70px;
  }
  .article-hero-inner { padding: 60px 28px 44px; }
  .blog-grid { gap: 26px; }
}

/* Tablet (768-991px) — single column, sidebar drops below content */
@media (max-width: 991.98px) {
  .article-canvas {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 24px 60px;
  }
  .article-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .article-sidebar > * {
    flex: 1 1 280px;
    min-width: 0;
  }
  .article-hero { min-height: 380px; }
  .article-hero-inner { padding: 60px 24px 44px; }
  .article-hero-inner h1 { font-size: clamp(1.5rem, 3.6vw, 2.2rem); }
  .blog-section { padding: 60px 4%; }
  .blog-grid { gap: 22px; }
}

/* Phone landscape / small tablet (576-767px) */
@media (max-width: 767.98px) {
  .article-hero { min-height: 340px; }
  .article-hero-inner { padding: 56px 20px 40px; }
  .article-hero-inner h1 {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
    margin-bottom: 14px;
  }
  .article-byline {
    font-size: 0.85rem;
    gap: 12px;
  }
  .article-byline .by-avatar { width: 34px; height: 34px; }

  .article-canvas { padding: 28px 16px 50px; gap: 28px; }

  /* Body typography on phones */
  .article-body { font-size: 1rem; line-height: 1.75; }
  .article-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    padding-left: 14px;
  }
  .article-body h2 { font-size: 1.35rem; margin-top: 1.6em; }
  .article-body h3 { font-size: 1.1rem; }

  /* Pull-quote */
  .article-body blockquote,
  .pull-quote {
    margin: 1.4em 0;
    padding: 18px 20px;
    font-size: 1rem;
  }

  /* Tables — horizontal scroll on small screens to keep layout intact */
  .article-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    font-size: 0.86rem;
  }
  .article-body table th,
  .article-body table td {
    padding: 10px 12px;
  }

  /* CTA tighter padding */
  .article-cta {
    padding: 26px 20px;
    border-radius: 12px;
  }
  .article-cta h3 { font-size: 1.15rem; }
  .article-cta p { font-size: 0.92rem; }
  .article-cta .cta-btn {
    padding: 12px 22px;
    font-size: 0.92rem;
    width: 100%;
    text-align: center;
  }

  /* Author block */
  .article-author { padding: 18px; gap: 14px; }
  .article-author img { width: 52px; height: 52px; }

  /* Listing hero */
  .blog-hero { padding: 70px 5% 56px; }
  .blog-hero h1 { font-size: clamp(1.6rem, 5vw, 2rem); }
  .blog-hero p { font-size: 0.95rem; }

  /* Listing cards */
  .blog-section { padding: 50px 4%; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card-body { padding: 20px 20px 22px; }
  .blog-card h3 { font-size: 1.05rem; }

  /* Sidebar boxes */
  .sidebar-box, .sidebar-card {
    padding: 18px 18px;
  }

  /* Related posts */
  .related-posts { padding: 44px 4%; }
  .related-posts h3 { font-size: 1.2rem; }
}

/* Small phones (≤575px) — extra tightening */
@media (max-width: 575.98px) {
  .article-hero { min-height: 280px; }
  .article-hero-inner { padding: 50px 16px 32px; }
  .article-hero-inner h1 {
    font-size: clamp(1.3rem, 5.5vw, 1.7rem);
    line-height: 1.25;
  }

  .article-category {
    padding: 5px 12px;
    font-size: 0.7rem;
  }

  .article-byline {
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.82rem;
  }
  .article-byline .by-meta-dot { display: none; }

  .article-canvas { padding: 22px 14px 44px; }
  .article-body { font-size: 0.96rem; }
  .article-lead { font-size: 0.98rem; }

  .article-body h2 { font-size: 1.2rem; }
  .article-body h3 { font-size: 1.05rem; }

  .article-tags { gap: 6px; }
  .article-tags .tag-chip {
    padding: 4px 10px;
    font-size: 0.74rem;
  }

  .article-share { flex-wrap: wrap; gap: 8px; }
  .article-share .share-btn { width: 34px; height: 34px; }

  .article-author { flex-direction: column; text-align: center; }

  .blog-card .blog-tag {
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 0.68rem;
  }

  .blog-section { padding: 40px 4%; }
  .blog-card-body { padding: 18px 16px 20px; }
  .blog-card .blog-meta { font-size: 0.78rem; gap: 10px; }

  .sidebar-toc a { font-size: 0.88rem; padding: 7px 10px; }
}

/* Tiny phones (≤360px) — last-ditch fallbacks */
@media (max-width: 360px) {
  .article-canvas { padding: 18px 12px 36px; }
  .article-hero-inner { padding: 44px 14px 28px; }
  .article-hero-inner h1 { font-size: 1.2rem; }
  .article-body { font-size: 0.94rem; }
  .article-cta { padding: 22px 16px; }
  .article-cta h3 { font-size: 1.05rem; }
  .blog-card-body { padding: 16px 14px 18px; }
  .blog-card h3 { font-size: 1rem; }
}

/* Print friendly (just in case someone prints an article) */
@media print {
  .site-header, .article-sidebar, .related-posts,
  .article-cta, .article-share, .footer-section {
    display: none !important;
  }
  .article-canvas { display: block; padding: 0; }
  .article-body { font-size: 11pt; }
  .article-hero { min-height: auto; padding: 20pt 0; }
  .article-hero-img, .article-hero::before { display: none; }
  .article-hero-inner { color: #000; padding: 0; }
  .article-hero-inner h1 { color: #000; }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .blog-card,
  .blog-card .blog-card-img img,
  .article-share .share-btn,
  .article-cta .cta-btn,
  .blog-card .blog-read-more i {
    transition: none !important;
  }
  .blog-card:hover { transform: none; }
  .blog-card:hover .blog-card-img img { transform: none; }
}

/* =====================================================
   FONT — match site-wide Poppins (homepage default)
===================================================== */
.blog-hero,
.blog-section,
.blog-card,
.blog-card *,
.article-page,
.article-page *,
.article-hero-inner,
.article-byline,
.article-body,
.article-body *,
.article-cta,
.article-author,
.article-tags,
.article-share,
.related-posts,
.related-posts *,
.sidebar-box,
.sidebar-box *,
.sidebar-card,
.sidebar-card * {
  font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Don't override icon fonts */
.blog-card i[class*="fa-"],
.article-page i[class*="fa-"],
.related-posts i[class*="fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}
.blog-card .fab,
.article-page .fab,
.related-posts .fab {
  font-family: "Font Awesome 6 Brands" !important;
}
