/**
 * Title Shadow Control Styles
 * Dezenter Text-Shadow für weiße Titel auf hellen Bildern
 */

/* Text-Shadow nur wenn über Checkbox aktiviert */
body.title-shadow-active .wp-block-cover .wp-block-post-title {
    /* Großflächiger, diffuser Shadow - kaum merkbar aber wirksam */
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.10),
        0 8px 24px rgba(0, 0, 0, 0.08);
    
    /* Sanfter Übergang */
    transition: text-shadow 0.3s ease;
}

/* Optional: Auch für Datum und Kategorien unter dem Titel */
body.title-shadow-active .wp-block-cover .wp-block-post-date,
body.title-shadow-active .wp-block-cover .wp-block-post-terms {
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.10),
        0 4px 16px rgba(0, 0, 0, 0.08);
    transition: text-shadow 0.3s ease;
}

/* Basis-Transition für sanfte Übergänge */
.wp-block-cover .wp-block-post-title,
.wp-block-cover .wp-block-post-date,
.wp-block-cover .wp-block-post-terms {
    transition: text-shadow 0.3s ease;
}
