/* ═══════════════════════════════════════════════════
   TYPOGRAPHY SYSTEM — CTS Network
   Font: Figtree (project standard)
   ═══════════════════════════════════════════════════ */

/* ── Base body ── */
body {
    font-family: 'Figtree', 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1A1A2E;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Heading hierarchy ── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    text-wrap: balance;
    color: #1A1A2E;
}

h1 { font-size: 2.5rem; }   /* 40px */
h2 { font-size: 2rem; }     /* 32px */
h3 { font-size: 1.5rem; }   /* 24px */
h4 { font-size: 1.125rem; } /* 18px */
h5 { font-size: 1rem; }     /* 16px */
h6 { font-size: 0.875rem; } /* 14px */

/* ── Article body text ── */
.body-text-data {
    font-size: 1.125rem;
    line-height: 1.75;
}

.body-text-data p {
    margin-bottom: 1.25em;
    text-wrap: pretty;
}

.body-text-data h2 {
    font-size: 1.625rem;
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.body-text-data h3 {
    font-size: 1.375rem;
    margin-top: 1.75em;
    margin-bottom: 0.5em;
}

.body-text-data ul,
.body-text-data ol {
    padding-left: 1.5em;
    margin-bottom: 1.25em;
}

.body-text-data li {
    margin-bottom: 0.5em;
}

.body-text-data blockquote {
    border-left: 4px solid #eda720;
    padding: 1em 1.5em;
    margin: 1.5em 0;
    background: rgba(237, 167, 32, 0.06);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #444;
}

.body-text-data img {
    border-radius: 8px;
    margin: 1.5em 0;
}

/* ── Section headings (homepage) ── */
.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A2E;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 28px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: #eda720;
    border-radius: 2px;
}

/* ── Meta text ── */
.meta-text {
    font-size: 0.875rem;
    color: #6B7280;
}

/* ── Dark mode typography ── */
[data-bs-theme="dark"] body,
[data-bs-theme="dark"] h1,
[data-bs-theme="dark"] h2,
[data-bs-theme="dark"] h3,
[data-bs-theme="dark"] h4,
[data-bs-theme="dark"] h5,
[data-bs-theme="dark"] h6 {
    color: #E8E6F0;
}

[data-bs-theme="dark"] .section-heading {
    color: #E8E6F0;
}

[data-bs-theme="dark"] .body-text-data {
    color: #d1cfe6;
}

[data-bs-theme="dark"] .body-text-data blockquote {
    background: rgba(237, 167, 32, 0.08);
    color: #b8b6d6;
}

[data-bs-theme="dark"] .meta-text {
    color: #8888a8;
}
