/* Guidance Layout Variants (HCU Variance) */

/* Structural differences to ensure DOM variety */

/* Variant 1: Default */
.vf-layout-variant-1 .guidance-section {
    margin-bottom: 3rem;
}

/* Variant 2: Prayer centered */
.vf-layout-variant-2 .guidance-prayer {
    background-color: transparent;
    border-left: 4px solid #9b59b6;
    /* Purple accent */
}

.vf-layout-variant-2 .guidance-scriptures {
    border-bottom: none;
    margin-bottom: 2rem;
}

/* Variant 3: Narrative first */
.vf-layout-variant-3 .guidance-reflection {
    font-size: 1.1rem;
    /* Slightly larger intro text */
    border: none;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
}

.vf-layout-variant-3 .guidance-scriptures {
    background-color: transparent;
    border: 1px solid rgba(225, 240, 250, 0.5);
}

/* Factoid styling variations */
.vf-layout-variant-1 .guidance-factoid {
    background-color: transparent;
    border-color: rgba(255, 224, 178, 0.5);
}

.vf-layout-variant-2 .guidance-factoid {
    border-style: dashed;
    background-color: transparent;
}

.vf-layout-variant-3 .guidance-factoid {
    background-color: transparent;
    border-color: rgba(200, 230, 201, 0.5);
    font-style: italic;
}

/* Curator Signature Block */
.vf-curator-signature {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.curator-sig-wrapper {
    margin-bottom: 1rem;
}

.curator-sig-img {
    max-width: 200px;
    height: auto;
    opacity: 0.85;
}

.curator-caption {
    font-family: var(--vf-font-serif, "Georgia", serif);
    font-style: italic;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.curator-link {
    margin-bottom: 1rem;
}

.curator-read-more {
    font-size: 0.9rem;
    color: var(--vf-color-primary, #3498db);
    text-decoration: none;
    font-weight: 500;
}

.curator-read-more:hover {
    text-decoration: underline;
}

.curator-footer-note {
    color: var(--color-muted);
    font-size: 0.8rem;
    margin-top: 1.5rem;
}

/* Page Template Styles */
.curator-letter-template .page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.curator-letter-template .subtitle {
    font-size: 1.25rem;
    color: #666;
    font-family: var(--vf-font-serif, serif);
    font-style: italic;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.curator-content section {
    margin-bottom: 2.5rem;
}

.curator-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}


.curator-signoff {
    margin-top: 4rem;
}

/* -------------------------------------------------------------------------- */
/* Ticket-907E: Sequential Bloom & Focus Frame (Guidance Spoke)               */
/* -------------------------------------------------------------------------- */

/* Base Verse Text Style for Bloom */
.guidance-verse .verse-text {
    opacity: 0;
    filter: blur(8px);
    transition: opacity 6s ease-out, filter 6s ease-out;
    will-change: opacity, filter;
}

/* Active Bloom State (Added via JS) */
.guidance-verse.vf-bloom-active .verse-text {
    opacity: 1;
    filter: blur(0);
}

/* Focus Frame (Respiratory Pulse) */
.guidance-verse {
    border: 1px solid transparent;
    /* Placeholder */
    position: relative;
    /* transition: border-color 0.5s ease; Removed to let animation drive */
}

/* Enabled state for frame animation */
.guidance-verse.vf-frame-active {
    animation: vf-focus-pulse 10s ease-in-out infinite;
    border-radius: 8px;
    /* Soften corners */
}

@keyframes vf-focus-pulse {

    0%,
    100% {
        border-color: rgba(122, 30, 44, 0.05);
        /* Covenant accent, very subtle */
        box-shadow: 0 0 10px rgba(122, 30, 44, 0.02);
    }

    50% {
        border-color: rgba(122, 30, 44, 0.2);
        box-shadow: 0 0 25px rgba(122, 30, 44, 0.08);
        /* Bloom outward */
    }
}

/* Reduced Motion Overrides */
@media (prefers-reduced-motion: reduce) {
    .guidance-verse .verse-text {
        opacity: 1 !important;
        filter: none !important;
        transition: none !important;
    }

    .guidance-verse.vf-frame-active {
        animation: none !important;
        border: 1px solid rgba(0, 0, 0, 0.1);
        /* Static border */
        box-shadow: none !important;
    }
}