/* post-style.css */
/* Version: 1.1 */
/* Changes: Added doctrine quotes grid, fixed full-width-image sizing to match other images */

/* Article Hero */
.article-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: #0a0a0a;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.article-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    padding: 60px 40px 50px;
}

.article-hero-content {
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.series-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent, #d4a84b);
    margin-bottom: 20px;
    font-weight: 600;
     text-shadow: 0 0 20px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.6);
}

.article-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.9);
}

.article-hero .subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.6);

}

.article-hero .intro {
    font-size: 20px;
    line-height: 1.6;
    max-width: 700px;
    opacity: 0.9;
}

/* Article Body */
.article-body {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 20px;
}

.text-column p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.7;
}

.text-column h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--color-text, #1a1a1a);
}

/* Drop Cap */
.drop-cap::first-letter {
    font-family: 'Playfair Display', Georgia, serif;
    float: left;
    font-size: 82px;
    line-height: 0.65;
    margin: 8px 12px 0 0;
    color: var(--color-text, #1a1a1a);
    font-weight: 700;
}

/* Full Width Image - now constrained to match other images */
.full-width-image {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.full-width-image .image-block {
    background: #f5f5f5;
}

.full-width-image img {
    width: 100%;
    display: block;
}

.full-width-image .caption-container {
    padding: 20px;
}

/* Breakout Image */
.breakout-image {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.breakout-image img {
    width: 100%;
    display: block;
}

.breakout-image .caption-container {
    padding: 20px 0;
}

/* Image Block */
.image-block {
    background: #f5f5f5;
}

.image-block img {
    display: block;
}

.caption-container {
    padding: 20px;
}

.caption-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text, #1a1a1a);
    margin-bottom: 10px;
    line-height: 1.3;
}

.caption-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 8px;
}

.caption-credit {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pull Quote */
.pull-quote {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 60px;
    border-left: 4px solid var(--color-accent, #d4a84b);
    background: #f9f7f3;
}

.pull-quote blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-style: italic;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0;
}

/* Expert Quote */
.expert-quote {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    align-items: start;
}

.expert-quote .expert-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
}

.expert-quote .quote-content {
    padding: 10px 0;
}

.expert-quote blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
    color: #2a2a2a;
    margin-bottom: 15px;
    border-left: 3px solid var(--color-accent, #d4a84b);
    padding-left: 20px;
}

.expert-quote .attribution {
    font-size: 14px;
    color: #666;
}

.expert-quote .attribution strong {
    display: block;
    font-size: 16px;
    color: var(--color-text, #1a1a1a);
    margin-bottom: 3px;
}

/* Doctrine Quotes Grid */
.doctrine-quotes {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.doctrine-quote {
    background: #f9f7f3;
    padding: 25px;
    border-left: 3px solid var(--color-accent, #d4a84b);
}

.doctrine-quote .denomination {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text, #1a1a1a);
    margin-bottom: 4px;
}

.doctrine-quote .source {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.doctrine-quote blockquote {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0;
}

/* Next Article */
.next-article {
    background: #1a1a1a;
    color: white;
    padding: 60px 40px;
    text-align: center;
}

.next-article .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent, #d4a84b);
    margin-bottom: 15px;
}

.next-article h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 25px;
}

.next-article .cta {
    font-size: 14px;
    opacity: 0.7;
}

/* Engagement */
.engagement {
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 20px 80px;
    border-top: 1px solid #ddd;
}

.engagement h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.engagement p {
    color: #555;
}

/* Responsive */
@media (max-width: 900px) {
    .article-hero h1 {
        font-size: 40px;
    }

    .article-hero .subtitle {
        font-size: 26px;
    }

    .expert-quote {
        grid-template-columns: 1fr;
    }

    .expert-quote .expert-image {
        width: 150px;
    }

    .pull-quote {
        padding: 30px;
    }

    .pull-quote blockquote {
        font-size: 22px;
    }

    .doctrine-quotes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .article-hero {
        height: 70vh;
        min-height: 500px;
    }

    .article-hero h1 {
        font-size: 32px;
    }

    .article-hero .subtitle {
        font-size: 22px;
    }

    .article-hero-overlay {
        padding: 40px 20px 30px;
    }

    .text-column h2 {
        font-size: 26px;
    }

    .drop-cap::first-letter {
        font-size: 60px;
    }
}