/* Article container */
.article-content, .philosophy-content, article {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* H1 - Title only */
.article-content h1, .philosophy-content h1, article h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* H2 - All subheads */
.article-content h2, .philosophy-content h2, article h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.3;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Force H3-H6 to match H2 */
.article-content h3, .article-content h4, .article-content h5, .article-content h6,
.philosophy-content h3, .philosophy-content h4, .philosophy-content h5, .philosophy-content h6,
article h3, article h4, article h5, article h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.3;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Paragraphs */
.article-content p, .philosophy-content p, article p {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 1.5rem;
    max-width: 65ch;
}

/* Images - centered, responsive */
.article-content img, .philosophy-content img, article img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    float: none !important;
}

/* Figure and captions */
.article-content figure, .philosophy-content figure, article figure {
    max-width: 100%;
    margin: 2rem auto;
    text-align: center;
}

.article-content figcaption, .philosophy-content figcaption, article figcaption {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 0.875rem;
    font-style: italic;
    color: #a08b68;
    text-align: center;
    margin-top: 0.5rem;
}

/* Mobile styles */
@media (max-width: 768px) {
    .article-content, .philosophy-content, article {
        padding-left: 16px;
        padding-right: 16px;
    }

    .article-content h1, .philosophy-content h1, article h1 {
        font-size: 2rem;
    }

    .article-content h2, .article-content h3, .article-content h4,
    .philosophy-content h2, .philosophy-content h3, .philosophy-content h4,
    article h2, article h3, article h4 {
        font-size: 1.5rem;
    }

    .article-content p, .philosophy-content p, article p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .article-content img, .philosophy-content img, article img {
        width: 100%;
    }

    .philosophy-content {
        text-align: center;
    }
}

/* Footer sign-off - centered */
.article-footer, .sign-off {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e2dc;
}

/* CTA section */
.article-cta, .book-cta {
    background: none;
    padding: 2rem 0;
    margin: 2.5rem 0;
    text-align: center;
    border-radius: 0;
}

.article-cta a, .book-cta a {
    color: #a08b68;
}
