/* =================================================
   BAZA WIEDZY — zmienne CSS (brand + layout)
   ================================================= */
:root {
  --brand-green: #11662D;
  --brand-green-dark: #0d4e22;
  --brand-green-soft: #e8f1ea;
  --brand-navy: #122738;
  --brand-navy-soft: #1a3348;
  --brand-navy-text: #2A3A4C;

  --bg: #fafaf7;
  --surface: #ffffff;
  --surface-alt: #f4f2ec;
  --border: #e8e6df;
  --border-strong: #d4d1c7;

  --text-primary: var(--brand-navy);
  --text-body: var(--brand-navy-text);
  --text-muted: #6b7785;
  --text-soft: #8b95a1;

  --warning-bg: #fef6e7;
  --warning-border: #e8a33d;
  --warning-text: #6b4a0f;

  --info-bg: #e8f1ea;
  --info-border: var(--brand-green);
  --info-text: var(--brand-green-dark);

  --shadow-sm: 0 1px 2px rgba(18,39,56,0.05);
  --shadow-md: 0 4px 12px rgba(18,39,56,0.08);
  --shadow-lg: 0 12px 32px rgba(18,39,56,0.10);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container-max: 1200px;
  --article-max: 720px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

/* =================================================
   SHARED — kb-author-avatar, kb-card
   ================================================= */
.kb-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-navy) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.kb-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.kb-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.kb-card__hero {
  aspect-ratio: 16 / 9;
  position: relative;
  background: linear-gradient(135deg, var(--brand-green-soft) 0%, var(--brand-green) 100%);
  overflow: hidden;
}
.kb-card__hero--navy { background: linear-gradient(135deg, #dde3e9 0%, var(--brand-navy) 100%); }
.kb-card__hero--mixed { background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-navy) 100%); }

.kb-card__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 30%, white 1.5px, transparent 2.5px),
    radial-gradient(circle at 70% 70%, white 1px, transparent 2px);
  background-size: 40px 40px, 30px 30px;
}

.kb-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.kb-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 14px;
}
.kb-card__cat::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-green);
  border-radius: 50%;
}

.kb-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.kb-card__excerpt {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kb-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-muted);
}

.kb-card__meta-item { display: inline-flex; align-items: center; gap: 5px; }

.kb-card__meta-dot {
  width: 3px;
  height: 3px;
  background: var(--text-soft);
  border-radius: 50%;
}

/* =================================================
   ARTICLE VIEW — /artykuly/{slug}
   ================================================= */
.article { background: var(--bg); }

.article__breadcrumb {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 32px 32px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.article__breadcrumb a { color: inherit; text-decoration: none; }
.article__breadcrumb a:hover { color: var(--brand-green); }

.article__header {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 32px 40px;
  text-align: center;
}

.article__cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--brand-green-soft);
  color: var(--brand-green-dark);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.article__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.article__subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.article__author { display: flex; align-items: center; gap: 12px; }
.article__author-info { text-align: left; }
.article__author-info strong {
  display: block;
  color: var(--brand-navy);
  font-weight: 600;
  font-size: 14.5px;
}
.article__author-info span { font-size: 12.5px; color: var(--text-muted); }

.article__meta-dot {
  width: 4px;
  height: 4px;
  background: var(--text-soft);
  border-radius: 50%;
}

.article__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.article__hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 60px;
}

.article__hero-box {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--brand-green-dark) 0%, var(--brand-navy) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.article__body {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 220px minmax(0, var(--article-max)) 220px;
  gap: 40px;
  justify-content: center;
}
@media (max-width: 1100px) {
  .article__body {
    grid-template-columns: minmax(0, var(--article-max));
    max-width: var(--article-max);
  }
  .article__toc, .article__aside { display: none; }
}

.article__toc {
  position: sticky;
  top: 80px;
  align-self: start;
  padding-top: 4px;
}

.article__toc-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.article__toc-list {
  list-style: none;
  border-left: 2px solid var(--border);
  padding-left: 14px;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}

.article__toc-list li { margin-bottom: 10px; }

.article__toc-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  display: block;
  transition: color 0.15s;
}
.article__toc-list a:hover,
.article__toc-list a.is-active { color: var(--brand-green); font-weight: 600; }

.article__content {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--text-body);
}
.article__content > * + * { margin-top: 1.5em; }
.article__content p { color: var(--text-body); }
.article__content a { color: var(--brand-green); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.article__content a:hover { text-decoration-thickness: 2.5px; }
.article__content strong { color: var(--brand-navy); font-weight: 700; }

.article__content h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-top: 2.2em;
  margin-bottom: 0.5em;
  scroll-margin-top: 100px;
}
.article__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-navy);
  margin-top: 1.8em;
  margin-bottom: 0.4em;
}

.article__content ul,
.article__content ol { padding-left: 22px; }
.article__content li { margin-bottom: 0.5em; padding-left: 6px; }
.article__content ul li::marker { color: var(--brand-green); }
.article__content ol li::marker { color: var(--brand-green); font-weight: 700; }

/* Divider */
.block-divider-line { border: none; border-top: 1px solid var(--border); margin: 2.5em 0; }
.block-divider-ornament { display: flex; justify-content: center; gap: 10px; margin: 2.5em 0; opacity: 0.5; }
.block-divider-ornament svg { width: 22px; height: 22px; color: var(--brand-green); }

/* Callout */
.block-callout {
  border-left: 3px solid var(--warning-border);
  background: var(--warning-bg);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2em 0;
}
.block-callout--info { border-color: var(--info-border); background: var(--info-bg); }
.block-callout--info .block-callout__title,
.block-callout--info .block-callout__content { color: var(--info-text); }
.block-callout--tip { border-color: #2563eb; background: #eff6ff; }
.block-callout--tip .block-callout__title,
.block-callout--tip .block-callout__content { color: #1e40af; }
.block-callout--success { border-color: var(--brand-green); background: var(--brand-green-soft); }
.block-callout--success .block-callout__title,
.block-callout--success .block-callout__content { color: var(--brand-green-dark); }

.block-callout__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--warning-text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.block-callout__content { font-size: 16px; line-height: 1.6; color: var(--warning-text); }

/* Author note */
.block-author-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-green);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2em 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.block-author-note__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-navy) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.block-author-note__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 6px;
}
.block-author-note__content { font-size: 16.5px; line-height: 1.6; font-style: italic; color: var(--text-body); }

/* Quote */
.block-quote {
  margin: 2.5em 0;
  padding: 28px 32px;
  background: var(--brand-navy);
  color: white;
  border-radius: var(--radius-md);
  position: relative;
}
.block-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--brand-green);
  line-height: 1;
}
.block-quote__content {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.block-quote__attribution { font-size: 14px; color: rgba(255,255,255,0.7); }
.block-quote__attribution strong { color: white; font-weight: 600; margin-right: 8px; }

/* Checklist */
.block-checklist {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 2.5em 0;
  box-shadow: var(--shadow-sm);
}
.block-checklist__header {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.block-checklist__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 8px;
}
.block-checklist__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: 6px;
}
.block-checklist__subtitle { font-size: 14px; color: var(--text-muted); }
.block-checklist__items { list-style: none; padding: 0; margin: 0; }
.block-checklist__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  user-select: none;
  transition: opacity 0.15s;
}
.block-checklist__item:last-child { border-bottom: none; }
.block-checklist__item:hover .block-checklist__check { border-color: var(--brand-green); }
.block-checklist__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-strong);
  border-radius: 6px;
  margin-top: 2px;
  position: relative;
  transition: all 0.15s;
}
.block-checklist__item.is-checked .block-checklist__check {
  background: var(--brand-green);
  border-color: var(--brand-green);
}
.block-checklist__item.is-checked .block-checklist__check::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
}
.block-checklist__text { flex: 1; font-size: 15.5px; line-height: 1.5; color: var(--text-body); padding-top: 2px; }
.block-checklist__item.is-checked .block-checklist__text { text-decoration: line-through; color: var(--text-soft); }
.block-checklist__progress {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}
.block-checklist__progress-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; margin: 0 16px; overflow: hidden; }
.block-checklist__progress-fill { height: 100%; background: var(--brand-green); transition: width 0.3s ease; }

/* Comparison */
.block-comparison { margin: 2.5em 0; }
.block-comparison__title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--brand-navy); margin-bottom: 16px; }
.block-comparison__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .block-comparison__cols { grid-template-columns: 1fr; } }
.block-comparison__col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.block-comparison__col--highlighted { border-color: var(--brand-green); border-width: 2px; box-shadow: 0 8px 24px rgba(17,102,45,0.08); }
.block-comparison__col-header { padding: 16px 20px; background: var(--surface-alt); font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.block-comparison__col--highlighted .block-comparison__col-header { background: var(--brand-green); color: white; }
.block-comparison__list { list-style: none; padding: 8px 0; margin: 0; }
.block-comparison__item {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  line-height: 1.45;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.block-comparison__item:last-child { border-bottom: none; }
.block-comparison__item::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  background: var(--text-soft);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>") center / contain no-repeat;
}
.block-comparison__col--highlighted .block-comparison__item::before {
  background: var(--brand-green);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
}

/* FAQ */
.block-faq { margin: 2.5em 0; }
.block-faq__title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--brand-navy); margin-bottom: 16px; }
.block-faq__item { border-bottom: 1px solid var(--border); }
.block-faq__item:first-of-type { border-top: 1px solid var(--border); }
.block-faq__summary {
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}
.block-faq__summary::-webkit-details-marker { display: none; }
.block-faq__icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: transform 0.2s; }
.block-faq__icon::before,
.block-faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--brand-green);
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
}
.block-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.block-faq__item[open] .block-faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.block-faq__answer { padding-bottom: 18px; font-size: 16px; line-height: 1.65; color: var(--text-body); }

/* CTA */
.block-cta {
  margin: 3em 0;
  padding: 40px;
  background: var(--brand-navy);
  color: white;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  /* subtelna lewa krawędź zamiast gradientu — gradient zielony nakładał się na zielony przycisk */
  border-left: 4px solid var(--brand-green);
}
.block-cta__content { position: relative; z-index: 1; }
/* !important konieczne: .article__content h3 (spec. 0,1,1) przebija .block-cta__title (0,1,0) */
.block-cta__title { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; color: #fff !important; }
.block-cta__subtitle { font-size: 16.5px; color: rgba(255,255,255,0.8) !important; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.55; }
.block-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--brand-green);
  color: #fff !important;           /* przebija .article__content a { color: var(--brand-green) } */
  border-radius: var(--radius-sm);
  text-decoration: none !important; /* przebija .article__content a { text-decoration: underline } */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.15s;
}
.block-cta__btn:hover { background: #0d4e22; transform: translateY(-1px); }
.block-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.block-cta__btn--outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none !important;
}
.block-cta__btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-1px); }

/* Article aside */
.article__aside { position: sticky; top: 80px; align-self: start; }
.article__aside-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; margin-bottom: 16px; }
.article__aside-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.article__share { display: flex; flex-direction: column; gap: 8px; }
.share-btn {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: 13px;
  color: var(--text-body);
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
  font-family: var(--font-body);
  text-decoration: none;
  display: block;
}
.share-btn:hover { background: var(--surface-alt); border-color: var(--border-strong); }

/* Article footer */
.article__footer { max-width: var(--article-max); margin: 60px auto 0; padding: 0 32px 80px; }
.article__tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.article__tag { padding: 6px 14px; background: var(--surface-alt); border-radius: 999px; font-size: 13px; color: var(--text-body); text-decoration: none; transition: background 0.15s; }
.article__tag:hover { background: var(--border); }

.article__author-card {
  margin-top: 40px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.article__author-card-avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-navy) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}
.article__author-card-body h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--brand-navy); margin-bottom: 2px; }
.article__author-card-body p.role { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; font-family: var(--font-display); letter-spacing: 0.3px; }
.article__author-card-body p.bio { font-size: 14.5px; color: var(--text-body); line-height: 1.55; }

.article__related { margin-top: 56px; }
.article__related-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--brand-navy); margin-bottom: 24px; }
.article__related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .article__related-grid { grid-template-columns: 1fr; } }
