/* Site geneli: tasarım token'ları, header, footer, blog ve içerik sayfaları.
   Hesaplama uygulamasına özel stiller src/style.css içindedir. */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #0b1f3a;
  --navy-2: #132f55;
  --ink: #0b1f3a;
  --ink-soft: #5d6b80;
  --ink-mute: #8a97a8;
  --line: #e6eaf1;
  --bg: #f4f6f9;
  --green: #10b981;
  --teal: #0f766e;
  --max: 1140px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header { background: var(--navy); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.site-header-inner {
  max-width: var(--max); margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; min-width: 0; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center; flex: none; border-radius: 10px;
  background: linear-gradient(155deg, #6ee7b7 0%, #10b981 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.28);
}
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-text strong { color: #fff; font-size: 16px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; }
.brand-text strong span { color: var(--green); }
.brand-text small { color: #8fa6c4; font-size: 10.5px; font-weight: 500; margin-top: 1px; }

.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav a {
  color: #c7d6ea; text-decoration: none; font-size: 13px; font-weight: 700;
  padding: 8px 12px; border-radius: 8px;
}
.site-nav a:hover { background: rgba(255, 255, 255, 0.07); color: #fff; }
.site-nav a.on { background: rgba(255, 255, 255, 0.1); color: #fff; }
.nav-icon { display: none; }
.site-header-action:empty { display: none; }

/* Ana dönüşüm noktası: "Size Özel Plan Bul" CTA'sı.
   Mobilde logonun YANINDA kalması için flex order kullanılıyor; menü alt
   satıra iniyor, CTA ilk satırda sağda sabit kalıyor. */
.wizard-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  background: linear-gradient(135deg, #047857 0%, #065f46 55%, #064e3b 100%);
  color: #ecfdf5;
  border: none;
  border-radius: 10px;
  padding: 9px 16px;
  font-family: Manrope, sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(4, 120, 87, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  animation: ctaGlow 3s ease-in-out infinite;
}
.wizard-btn:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 9px 24px rgba(4, 120, 87, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.wizard-btn:active { transform: translateY(0); }
.wizard-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Üzerinden geçen parlama efekti */
.wizard-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-18deg);
  animation: ctaShine 3s ease-in-out infinite;
  pointer-events: none;
}
.wizard-btn svg { animation: ctaSparkle 3s ease-in-out infinite; flex: none; }

/* Tek CTA: başlığın ÜSTÜNDE, badge (pill) formunda. Sayfanın ana dönüşüm
   noktası olduğu için header'daki ikinci kopya kaldırıldı; tek ve belirgin. */
/* Tam genişlik banner: mesaj solda, aksiyon sağda. Geniş bir barda kısa
   metni ortalamak boşluk yaratıyordu; space-between genişliği amaçlı
   kullanıyor. Pill yerine yumuşak köşe, banner oranına daha uygun. */
.wizard-btn--hero {
  width: 100%;
  justify-content: space-between;
  margin: 0 0 16px;
  padding: 13px 16px 13px 14px;
  border-radius: 14px;
  gap: 14px;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(4, 120, 87, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.cta-main { display: flex; align-items: center; gap: 11px; min-width: 0; text-align: left; }
.cta-icon {
  flex: none; width: 32px; height: 32px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.cta-side { display: flex; align-items: center; gap: 10px; flex: none; }
.cta-arrow {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.18s ease, background 0.18s ease;
}
.wizard-btn--hero:hover .cta-arrow { transform: translateX(3px); background: rgba(255, 255, 255, 0.34); }
/* Metin içi vurgu: "en uygun planı" kalın, "ücretsiz" ayrı bir çip */
.cta-label { font-weight: 600; line-height: 1.35; }
.cta-label strong { font-weight: 800; }
.cta-free {
  font-style: normal; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #064e3b; background: #d1fae5;
  border-radius: 999px; padding: 3.5px 9px;
}

.wizard-btn--hero:hover {
  box-shadow: 0 12px 30px rgba(4, 120, 87, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

@media (max-width: 700px) {
  .wizard-btn--hero { padding: 12px 13px; font-size: 14px; gap: 10px; }
  .cta-label { white-space: normal; }
}

@media (max-width: 420px) {
  /* Metin kısaltılmıyor; ölçüler küçülüyor ve metin iki satıra sarabiliyor */
  .wizard-btn--hero { padding: 11px 11px; gap: 8px; font-size: 13px; }
  .cta-icon { width: 28px; height: 28px; border-radius: 9px; }
  .cta-arrow { width: 26px; height: 26px; }
  .cta-free { font-size: 9px; padding: 2.5px 7px; }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 14px rgba(4, 120, 87, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.14); }
  50% { box-shadow: 0 6px 20px rgba(16, 185, 129, 0.66), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
}
@keyframes ctaShine {
  0%, 62% { left: -70%; }
  92%, 100% { left: 130%; }
}
@keyframes ctaSparkle {
  0%, 70%, 100% { transform: rotate(0deg) scale(1); }
  78% { transform: rotate(-14deg) scale(1.16); }
  86% { transform: rotate(12deg) scale(1.16); }
}

/* Hareket azaltma tercihi: animasyonlar kapatılır, buton yine öne çıkar. */
@media (prefers-reduced-motion: reduce) {
  .wizard-btn { animation: none; }
  .wizard-btn::after { animation: none; display: none; }
  .wizard-btn svg { animation: none; }
  .wizard-btn:hover { transform: none; }
}

@media (max-width: 700px) {
  .site-header-inner { padding: 10px 16px; gap: 10px; flex-wrap: nowrap; }
  .brand { min-width: 0; }
  .site-header-action { margin-left: auto; }
  .brand-text small { display: none; }

  /* Menü mobilde uygulama benzeri alt navigasyona dönüşür.
     env(safe-area-inset-bottom) çentikli/gesture bar'lı cihazlarda
     butonların altta kalmaması için; index.html ve htmlShell'de
     viewport-fit=cover olmadan bu değer 0 döner. */
  .site-nav {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    margin: 0; width: auto; gap: 0;
    display: flex; justify-content: space-around; align-items: stretch;
    background: #0b1f3a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.24);
    padding: 6px 6px calc(6px + env(safe-area-inset-bottom, 0px));
  }
  .site-nav a {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; padding: 7px 4px; border-radius: 10px;
    font-size: 10.5px; font-weight: 700; line-height: 1.2; text-align: center;
  }
  .site-nav a.on { background: rgba(16, 185, 129, 0.16); color: #7ee2bd; }
  .nav-icon { display: block; }

  /* Sabit alt bar içeriği kapatmasın */
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
  .site-footer { margin-top: 36px; }
}

@media (max-width: 440px) {
  .brand-mark { width: 30px !important; height: 30px !important; }
  .brand-text strong { font-size: 14.5px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c7d6ea; margin-top: 56px; }
.site-footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 40px 24px 28px;
  display: grid; grid-template-columns: minmax(0, 2fr) 1fr 1fr; gap: 32px;
}
.site-footer-brand p { margin: 12px 0 0; font-size: 12.5px; line-height: 1.65; color: #8fa6c4; max-width: 46ch; }
.site-footer-col h3 {
  margin: 0 0 12px; font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: #8fa6c4;
}
.site-footer-col a { display: block; color: #c7d6ea; text-decoration: none; font-size: 13px; margin-bottom: 9px; }
.site-footer-col a:hover { color: #fff; text-decoration: underline; }
.site-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--max); margin: 0 auto; padding: 20px 24px 32px;
}
.site-footer-legal p { margin: 0 0 14px; font-size: 11.5px; line-height: 1.7; color: #8fa6c4; }
.site-footer-legal strong { color: #c7d6ea; }
.site-footer-legal span { font-size: 11.5px; color: #6f86a6; }
@media (max-width: 760px) { .site-footer-inner { grid-template-columns: minmax(0, 1fr); gap: 24px; } }

/* ---------- Sayfa başlıkları ---------- */
.page-main { padding: 28px 0 0; }
.breadcrumb {
  list-style: none; display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
  padding: 0; margin: 0 0 26px; font-size: 12.5px; color: var(--ink-mute);
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb li.sep { display: flex; }
.breadcrumb li[aria-current] { color: var(--ink-mute); max-width: 46ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.page-head { margin-bottom: 30px; }
.page-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); background: #ecfdf5;
  border: 1px solid #a7f3d0; border-radius: 999px; padding: 5px 12px; margin-bottom: 16px;
}
.page-head h1 { margin: 0 0 12px; font-size: 34px; line-height: 1.15; font-weight: 800; letter-spacing: -0.025em; }
.page-head h1 .accent { color: var(--teal); }
.page-head p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--ink-soft); max-width: 62ch; }
@media (max-width: 620px) { .page-head h1 { font-size: 26px; } }

/* ---------- Blog listesi ---------- */
.blog-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-btn {
  border: 1px solid var(--line); background: #fff; color: var(--ink-soft);
  border-radius: 999px; padding: 8px 15px; font-family: inherit;
  font-size: 12.5px; font-weight: 700; cursor: pointer;
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.on { background: var(--navy); border-color: var(--navy); color: #fff; }

.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 18px; }
.post-card { height: 100%; }
.post-card-link {
  display: flex; flex-direction: column; height: 100%; gap: 10px; text-decoration: none;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.05); transition: transform 0.15s, box-shadow 0.15s;
}
.post-card-link:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(11, 31, 58, 0.1); }
.post-card-cat {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid; border-radius: 999px; padding: 4px 10px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
}
.post-card-link h2 { margin: 2px 0 0; font-size: 16.5px; line-height: 1.35; font-weight: 800; color: var(--ink); }
.post-card-link p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--ink-soft); }
.post-card-link footer {
  margin-top: auto; padding-top: 12px; border-top: 1px solid #f1f4f9;
  display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}
.post-meta { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 600; color: var(--ink-mute); }
.post-meta em { font-style: normal; margin: 0 3px; }
.post-read { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 800; color: var(--navy); }

/* ---------- Detay ---------- */
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 32px; align-items: start; }
@media (max-width: 940px) { .detail-layout { grid-template-columns: minmax(0, 1fr); } }
.detail-main {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px;
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.05); min-width: 0;
}
@media (max-width: 620px) { .detail-main { padding: 20px; } }
.detail-meta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.cat-badge {
  display: inline-flex; align-items: center; gap: 6px; border: 1px solid; border-radius: 999px;
  padding: 4px 11px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
}
.detail-main h1 { margin: 0 0 18px; font-size: 31px; line-height: 1.2; font-weight: 800; letter-spacing: -0.025em; }
@media (max-width: 620px) { .detail-main h1 { font-size: 24px; } }
.detail-excerpt {
  margin: 0 0 28px; padding-left: 16px; border-left: 3px solid var(--green);
  font-size: 15px; line-height: 1.7; color: var(--ink-soft);
}

/* ---------- Yasal uyarı / sorumluluk reddi ---------- */
.legal-disclaimer {
  display: flex; gap: 11px; align-items: flex-start;
  background: #fffbeb; border: 1px solid #fde68a; border-radius: 12px;
  padding: 14px 16px; margin: 32px 0 0;
}
.legal-disclaimer svg { flex: none; margin-top: 2px; }
.legal-disclaimer p { margin: 0; font-size: 12px; line-height: 1.65; color: #78350f; }
.legal-disclaimer strong { font-weight: 800; color: #92400e; }
.legal-disclaimer a { color: #92400e; font-weight: 700; text-decoration: underline; }
.legal-disclaimer.compact { margin: 16px 0 0; padding: 11px 13px; }
.legal-disclaimer.compact p { font-size: 11.5px; }

/* ---------- Hızlı Cevap (TL;DR) ---------- */
.tldr {
  margin: 0 0 28px; background: #f0fdf4; border: 1px solid #86efac;
  border-left: 4px solid #10b981; border-radius: 0 12px 12px 0; padding: 15px 18px;
}
.tldr-label {
  display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: #047857; margin-bottom: 7px;
}
.tldr p { margin: 0; font-size: 14.5px; line-height: 1.7; color: #14532d; font-weight: 500; }

/* ---------- SSS ---------- */
.faq-block { margin-top: 36px; }
.faq-block h2 { margin: 0 0 14px; font-size: 21px; font-weight: 800; letter-spacing: -0.015em; }
.faq-item {
  border: 1px solid var(--line); border-radius: 12px; margin-bottom: 9px;
  background: #fbfcfe; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 13px 16px; font-size: 14px; font-weight: 700; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; gap: 10px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 18px; font-weight: 700; color: var(--ink-mute); flex: none; }
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-item p { margin: 0; padding: 13px 16px; font-size: 13.5px; line-height: 1.7; color: #24313f; }

/* ---------- Yazı içeriği ---------- */
.blog-content { font-size: 15px; line-height: 1.78; color: #24313f; }
.blog-content .blog-lead { font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 26px; }
.blog-content h2 {
  margin: 34px 0 12px; font-size: 21px; line-height: 1.3; font-weight: 800;
  letter-spacing: -0.015em; color: var(--ink);
}
.blog-content h3 { margin: 24px 0 8px; font-size: 16.5px; font-weight: 800; color: var(--ink); }
.blog-content p { margin: 0 0 16px; }
.blog-content a { color: var(--teal); font-weight: 600; }
.blog-content strong { font-weight: 800; color: var(--ink); }

.blog-quote {
  margin: 24px 0; padding: 16px 20px; background: #f4f7fb; border-left: 4px solid var(--navy);
  border-radius: 0 12px 12px 0; font-size: 14.5px; line-height: 1.65; font-weight: 600; color: var(--navy);
}
.blog-list { margin: 0 0 18px; padding-left: 20px; }
.blog-list li { margin-bottom: 9px; }
.blog-example {
  margin: 22px 0; background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 12px; padding: 14px 16px;
}
.blog-example-label {
  display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: #047857; margin-bottom: 7px;
}
.blog-example p { margin: 0; font-size: 14px; line-height: 1.75; color: #065f46; }
.blog-note {
  margin: 22px 0 0; background: #fffbeb; border: 1px solid #fde68a; border-radius: 12px;
  padding: 13px 15px; font-size: 13px; line-height: 1.65; color: #92400e;
}

.blog-table { margin: 22px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
.blog-table table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 460px; }
.blog-table th {
  background: #f4f6f9; text-align: left; padding: 11px 14px; font-weight: 800;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute);
  border-bottom: 1px solid var(--line);
}
.blog-table td { padding: 11px 14px; border-bottom: 1px solid #f1f4f9; vertical-align: top; line-height: 1.55; }
.blog-table tbody tr:last-child td { border-bottom: none; }
.blog-table tbody tr:nth-child(even) { background: #fbfcfe; }

.disclaimer {
  display: flex; gap: 11px; margin: 32px 0 0; background: #eff6ff; border: 1px solid #bfdbfe;
  border-radius: 12px; padding: 14px 16px;
}
.disclaimer p { margin: 0; font-size: 12.5px; line-height: 1.65; color: #1e3a8a; }

.share-bar {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line);
}
.share-bar > span { font-size: 13px; font-weight: 800; }
.share-btn {
  text-decoration: none; border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 13px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); background: #fbfcfe;
}
.share-btn:hover { border-color: var(--navy); color: var(--navy); }
.detail-back { margin-top: 26px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  border: 1px solid var(--line); border-radius: 9px; padding: 10px 16px;
  font-size: 13px; font-weight: 700; color: var(--navy); background: #fff;
}
.btn-ghost:hover { border-color: var(--navy); }

/* ---------- Kenar çubuğu ---------- */
.detail-side { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 20px; }
@media (max-width: 940px) { .detail-side { position: static; } }
.side-cta {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 16px; padding: 20px; box-shadow: 0 14px 34px rgba(11, 31, 58, 0.22);
}
.side-cta h3 { margin: 0 0 7px; font-size: 15.5px; font-weight: 800; color: #fff; }
.side-cta p { margin: 0 0 15px; font-size: 12.5px; line-height: 1.6; color: #8fa6c4; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px; width: 100%; justify-content: center;
  background: var(--green); color: #fff; text-decoration: none; border-radius: 9px;
  padding: 11px 14px; font-size: 13px; font-weight: 800;
}
.btn-primary:hover { background: #059669; }
.side-box { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.side-box h3 {
  margin: 0 0 13px; font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-mute);
}
.side-link { display: flex; gap: 9px; text-decoration: none; padding: 9px 0; border-bottom: 1px solid #f1f4f9; }
.side-link:last-child { border-bottom: none; }
.side-link span { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.side-link strong { font-size: 13px; line-height: 1.45; font-weight: 700; color: var(--ink); }
.side-link em { font-style: normal; font-size: 11.5px; color: var(--ink-mute); }
.side-link:hover strong { color: var(--teal); }
.side-list { margin: 0; padding-left: 18px; font-size: 12.5px; line-height: 1.65; color: var(--ink-soft); }
.side-list li { margin-bottom: 8px; }

/* ---------- Düz metin sayfaları ---------- */
.prose {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px;
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.05);
  font-size: 15px; line-height: 1.78; color: #24313f;
}
@media (max-width: 620px) { .prose { padding: 20px; } }
.prose h2 { margin: 30px 0 12px; font-size: 20px; font-weight: 800; letter-spacing: -0.015em; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 16px; }
.prose a { color: var(--teal); font-weight: 600; }
.prose strong { font-weight: 800; color: var(--ink); }
