/* ============================================================
   TEASER DESTACADO (Versión Optimizada)
   Uso: .teaser_destacado .nombre_clase
   ============================================================ */
:root {
    --utility-gray: #f8f9fa;
    --color-primario: #0d6efd;
}

/* ── Sección Principal ── */
.teaser_destacado {
    background-color: var(--utility-gray);
}

/* ── Contenedor imagen (posición relativa para el destacado) ── */
.teaser_destacado .contenedor_imagen {
    position: relative;
    padding-bottom: 2rem;
    padding-right: 2rem;
}

/* ── Marco de la imagen ── */
.teaser_destacado .marco_imagen {
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    background-color: #e2e8f0;
}

/* ── Imagen principal ── */
.teaser_destacado .imagen_principal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Tarjeta destacada decorativa ── */
.teaser_destacado .tarjeta_destacada {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    border-left: 4px solid var(--color-primario);
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 1.25rem 1.5rem;
    min-width: 200px;
}

/* ── Frase principal de la tarjeta ── */
.teaser_destacado .frase_principal {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primario);
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

/* ── Frase secundaria de la tarjeta ── */
.teaser_destacado .frase_secundaria {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 0;
}

/* ── Bloque sobretítulo (barra + texto) ── */
.teaser_destacado .sobretitulo_bloque {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.teaser_destacado .sobretitulo_barra {
    width: 3px;
    height: 1.1rem;
    background-color: var(--color-primario);
    flex-shrink: 0;
}

.teaser_destacado .sobretitulo_texto {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primario);
}

/* ── Titular principal ── */
.teaser_destacado .titular {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 1.25rem;
}

/* ── Texto descriptivo ── */
.teaser_destacado .texto_descriptivo {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #475569;
}

/* ── Listas dentro del texto descriptivo (Summernote) ── */
.teaser_destacado .texto_descriptivo ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.teaser_destacado .texto_descriptivo ul li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-left: 0;
    line-height: 1.5;
}

.teaser_destacado .texto_descriptivo ul li::before {
    content: 'check_circle';
    font-family: 'Material Icons', 'Material Symbols Outlined';
    font-size: 1.25rem;
    color: var(--color-primario);
    flex-shrink: 0;
    line-height: 1;
    position: relative;
    top: 1px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .teaser_destacado .contenedor_imagen {
        padding-right: 0;
    }
}