/* --- FUSIÓN DE ESTILOS EFB MODERNO --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Mantenemos tus globales pero priorizamos la nueva fuente en la noticia */
.efb-news-article {
    font-family: 'Inter', sans-serif !important;
    text-align: justify !important;
}

/* EFECTO HERO: Transformamos el div del título */
.news-hero-wrapper {
    background: linear-gradient(135deg, #6ac7ea 0%, #00a0dc 100%) !important;
    margin: -25px -15px 40px -15px; /* Ajuste para cubrir bordes */
    padding: 60px 20px !important;
    color: white !important;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-hero-wrapper h1 {
    color: white !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    max-width: 900px;
    margin: 0 auto !important;
    line-height: 1.2;
    border: none !important; /* Quitamos bordes si los hay */
}

.news-hero-wrapper hr {
    display: none; /* Limpiamos las líneas antiguas para el look Hero */
}

.news-hero-wrapper img {
    filter: brightness(0) invert(1); /* El logo en blanco para el fondo azul */
    margin-right: 15px;
}

/* OPTIMIZACIÓN DE LECTURA: Contenedor del cuerpo */
.news-body-wrapper {
    max-width: 800px !important;
    margin: 0 auto !important;
    float: none !important;
    padding-bottom: 50px;
}

.news-body-wrapper .fs-5 {
    font-size: 1.15rem !important;
    line-height: 1.8 !important;
    color: #333 !important;
    display: block;
}

/* BOTONES MODERNIZADOS */
.btn-modern-primary {
    background-color: #00a0dc !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 35px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,160,220,0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,160,220,0.4);
}

.btn-modern-back {
    background-color: #77be44 !important;
    border-radius: 50px !important;
    padding: 10px 25px !important;
}

/* IMAGEN DESTACADA */
.featured-img-styled {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-top: 30px;
    max-width: 100% !important;
    height: auto !important;
}