@charset "UTF-8";
/* ==========================================================================
   Blog Post Content Typography & Blockquotes
   ========================================================================== */

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--brown-dark, #38281e);
    margin-bottom: 40px;
}

/* Paragraph spacing */
.article-content p {
    margin-bottom: 1.5rem;
}

/* Headings within blog content */
.article-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    color: var(--brown-dark, #38281e);
    margin: 2.2rem 0 1rem 0;
}

.article-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: var(--brown, #5b4432);
    margin: 1.8rem 0 0.8rem 0;
}

/* Blockquote Styling */
.article-content blockquote {
    position: relative;
    margin: 2rem 0;
    padding: 24px 30px;
    background: var(--cream, #efe3d2);
    border-left: 4px solid var(--sand-dark, #b89c7c);
    border-radius: 0 16px 16px 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--brown-dark, #38281e);
    box-shadow: var(--shadow-sm, 0 6px 18px rgba(73, 51, 34, 0.05));
}

/* Large decorative opening quote mark */
.article-content blockquote::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 12px;
    font-size: 4rem;
    color: var(--sand-dark, #b89c7c);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.article-content blockquote p {
    margin-bottom: 0;
}

/* Optional attribution line inside blockquote (<cite> or <footer>) */
.article-content blockquote cite,
.article-content blockquote footer {
    display: block;
    margin-top: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
    color: var(--brown-soft, #806a55);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-content blockquote cite::before,
.article-content blockquote footer::before {
    content: "— ";
}

/* Lists inside blog content */
.article-content ul,
.article-content ol {
    margin: 1.2rem 0 1.5rem 1.8rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

/* Emphasis & Links */
.article-content strong {
    color: var(--brown-dark, #38281e);
    font-weight: 700;
}

.article-content a {
    color: var(--brown, #5b4432);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.article-content a:hover {
    color: var(--sand-dark, #b89c7c);
}

/* Responsive adjustments for mobile */
@media (max-width: 620px) {
    .article-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .article-content blockquote {
        padding: 18px 20px;
        font-size: 1.15rem;
        margin: 1.5rem 0;
    }

    .article-content blockquote::before {
        font-size: 3rem;
        top: -6px;
        left: 8px;
    }
}