﻿


body {
    font-family: var(--font-ui);
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    color: var(--ink);
    background: var(--bg);
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-ui);
    color: var(--ink);
    line-height: var(--lh-tight);
    letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-2xl); font-weight: 800; }
h2 { font-size: var(--fs-xl);  font-weight: 700; }
h3 { font-size: var(--fs-lg);  font-weight: 700; }
h4 { font-size: var(--fs-md);  font-weight: 600; }

@media (min-width: 768px) {
    h1 { font-size: var(--fs-3xl); }
    h2 { font-size: var(--fs-2xl); }
}


.article-content {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    line-height: var(--lh-relaxed);
    color: var(--ink-soft);
}

.article-content p {
    margin-bottom: var(--sp-20);
}

.article-content h2 {
    font-family: var(--font-ui);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--ink);
    margin: var(--sp-40) 0 var(--sp-16);
}

.article-content h3 {
    font-family: var(--font-ui);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--ink);
    margin: var(--sp-32) 0 var(--sp-12);
}

.article-content a {
    color: var(--navy-light);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
    transition: color var(--duration-fast) var(--ease-out);
}
.article-content a:hover {
    color: var(--navy);
}

.article-content blockquote {
    border-left: 3px solid var(--gold);
    padding: var(--sp-16) var(--sp-20);
    margin: var(--sp-32) 0;
    background: var(--surface-2);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    font-size: var(--fs-lg);
    line-height: var(--lh-snug);
    color: var(--ink);
}

.article-content blockquote cite {
    display: block;
    margin-top: var(--sp-12);
    font-style: normal;
    font-family: var(--font-ui);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--ink-muted);
}

.article-content ul,
.article-content ol {
    margin: var(--sp-16) 0;
    padding-left: var(--sp-24);
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
    margin-bottom: var(--sp-8);
}

.article-content img {
    border-radius: var(--radius-md);
    margin: var(--sp-24) 0;
}


.text-xs   { font-size: var(--fs-xs); }
.text-sm   { font-size: var(--fs-sm); }
.text-base { font-size: var(--fs-base); }
.text-md   { font-size: var(--fs-md); }
.text-lg   { font-size: var(--fs-lg); }


.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-black    { font-weight: 800; }


.text-soft  { color: var(--ink-soft); }
.text-muted { color: var(--ink-muted); }
.text-faint { color: var(--ink-faint); }


.article-content .lead {
    font-size: var(--fs-lg);
    font-weight: 400;
    color: var(--ink);
    line-height: var(--lh-normal);
}

.article-content .lead::first-letter {
    font-size: 52px;
    font-weight: 700;
    float: left;
    line-height: 0.9;
    padding: 6px 8px 0 0;
    color: var(--navy);
}
