/* lib/styles/components/scripture_callout.css */

.scripture-callout {
    margin: 0 auto;
    padding: var(--spacing-xl, 48px) var(--spacing-lg, 24px);
    max-width: 800px;
    text-align: center;
    position: relative;
    /* Removes default browser blockquote margins */
    margin-inline-start: 0;
    margin-inline-end: 0;

    /* * Motion hook: Ensures any applied reveal animations (opacity/transform) 
     * use the slower, smoother 'reveal' token to maintain a reverent tone.
     */
    transition: opacity var(--motion-transition-reveal, 500ms ease), 
                transform var(--motion-transition-reveal, 500ms ease);
}

/* Elegant oversized quote mark using the brand's secondary slate blue */
.scripture-callout::before {
    content: "“";
    display: block;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 72px;
    color: var(--color-brand-slate-blue, #2A4B7C); /* Updated to match token naming */
    opacity: 0.15; /* Replaces hardcoded light hex to respect background context */
    line-height: 0.5;
    margin-bottom: var(--spacing-md, 24px);
}

.scripture-callout__text {
    /* Using Merriweather per brand guidelines for formal/scriptural text */
    font-family: var(--font-serif, 'Merriweather', serif);
    font-size: 24px;
    line-height: 1.6;
    color: var(--color-heading, #0F294A); /* Updated to use semantic token */
    margin: 0 0 var(--spacing-md, 24px) 0;
    font-style: italic;
}

.scripture-callout__citation {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-secondary, #2A4B7C); /* Updated to use semantic token */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scripture-callout__citation span {
    font-style: normal;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    .scripture-callout {
        padding: var(--spacing-lg, 32px) var(--spacing-md, 16px);
    }

    .scripture-callout__text {
        font-size: 20px;
    }
}