/* =========================================================
   OlloSoft — Article / Blog post typography
   ========================================================= */

.article-prose {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #D4D4D8;
}

.article-prose .lead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: #E4E4E7;
  font-weight: 400;
  margin-bottom: 2rem;
}

.article-prose p {
  margin: 1.25rem 0;
  letter-spacing: -0.005em;
}

.article-prose h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.25;
  margin: 3rem 0 1.25rem;
  letter-spacing: -0.022em;
  color: #FAFAFA;
}

.article-prose h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.3;
  margin: 2.25rem 0 0.85rem;
  letter-spacing: -0.018em;
  color: #FAFAFA;
}

.article-prose h4 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin: 1.75rem 0 0.6rem;
  color: #FAFAFA;
}

.article-prose strong {
  color: #FAFAFA;
  font-weight: 600;
}

.article-prose em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.08em;
  color: #E4E4E7;
}

.article-prose a {
  color: #FDBA74;
  text-decoration: underline;
  text-decoration-color: rgba(253, 186, 116, 0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}
.article-prose a:hover {
  color: #FED7AA;
  text-decoration-color: #FED7AA;
}

.article-prose ul,
.article-prose ol {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}

.article-prose ul li,
.article-prose ol li {
  margin: 0.65rem 0;
  padding-left: 0.35rem;
}

.article-prose ul li::marker {
  color: #C2410C;
}

.article-prose ol li::marker {
  color: #C2410C;
  font-weight: 600;
  font-family: 'Inter Tight', sans-serif;
}

.article-prose code {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.875em;
  background: rgba(194, 65, 12, 0.12);
  border: 1px solid rgba(194, 65, 12, 0.22);
  color: #FDBA74;
  padding: 0.12rem 0.45rem;
  border-radius: 0.35rem;
}

.article-prose pre {
  background: #0D0D14;
  border: 1px solid rgba(228, 228, 231, 0.08);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  overflow-x: auto;
  font-size: 0.875rem;
  line-height: 1.65;
}

.article-prose pre code {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  background: transparent;
  border: 0;
  color: #D4D4D8;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
}

.article-prose blockquote {
  border-left: 3px solid #C2410C;
  margin: 1.75rem 0;
  padding: 0.4rem 0 0.4rem 1.5rem;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.5;
  color: #E4E4E7;
}

.article-prose hr {
  border: 0;
  height: 1px;
  background: rgba(228, 228, 231, 0.1);
  margin: 3rem 0;
}

.article-prose img {
  border-radius: 0.75rem;
  margin: 2rem 0;
  width: 100%;
  height: auto;
}

/* ---------- Callout box ---------- */
.article-prose .callout {
  background: linear-gradient(135deg, rgba(46, 74, 138, 0.12), rgba(194, 65, 12, 0.06));
  border: 1px solid rgba(194, 65, 12, 0.25);
  border-radius: 0.875rem;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.article-prose .callout-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FDBA74;
  margin-bottom: 0.85rem;
}
.article-prose .callout ul {
  margin: 0;
  padding-left: 1.2rem;
}
.article-prose .callout ul li {
  margin: 0.35rem 0;
  font-size: 0.95rem;
}

/* ---------- CTA box at bottom ---------- */
.article-prose .cta-box {
  background: linear-gradient(135deg, rgba(46, 74, 138, 0.18), rgba(194, 65, 12, 0.10));
  border: 1px solid rgba(194, 65, 12, 0.32);
  border-radius: 1rem;
  padding: 2rem;
  margin: 3rem 0 0;
  text-align: left;
}
.article-prose .cta-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

/* ---------- Table of contents ---------- */
.article-toc {
  background: rgba(22, 22, 31, 0.5);
  border: 1px solid rgba(228, 228, 231, 0.06);
  border-radius: 0.875rem;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.article-toc-title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A1A1AA;
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.article-toc ol {
  margin: 0;
  padding-left: 1.5rem;
}
.article-toc ol li {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}
.article-toc a {
  color: #D4D4D8;
  text-decoration: none;
}
.article-toc a:hover {
  color: #FDBA74;
}

/* ---------- Drop cap (optional flourish) ---------- */
.article-prose .drop-cap::first-letter {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  float: left;
  margin: 0.15rem 0.65rem -0.35rem 0;
  color: #FDBA74;
}
