/**
 * Page Banner Block Styles
 * 
 * Estilos para el banner hero de páginas
 * Usa la paleta oficial: #B7272F, #FFC00A, #41ADCD, #374F59
 */

:root {
    --gradient-banner: linear-gradient(135deg, rgba(183, 39, 47, 0.85) 0%, rgba(55, 79, 89, 0.75) 100%);
}

/* ============================================
   Banner Container
   ============================================ */
.core-page-banner {
    position: relative;
    width: 100%;
    min-height: 60vh;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Banner Image
   ============================================ */
.core-page-banner-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.core-page-banner-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   Banner Overlay
   ============================================ */
.core-page-banner-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-banner);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1;
}

/* ============================================
   Banner Content
   ============================================ */
.core-page-banner-content {
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.core-page-banner-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.core-page-banner-description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    margin: 0;
    color: #FFFFFF;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .core-page-banner {
        min-height: 50vh;
    }
}

@media (max-width: 480px) {
    .core-page-banner {
        min-height: 40vh;
    }
}

/* ============================================
   Accesibilidad
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .core-page-banner {
        transition: none;
    }
}
