/*
 * expo-video.css
 * Sección de video con contenedor responsive
 */

.expo-video {
    background: #ffffff;
}

/* Hueco exacto de 120px respecto a .expo-actividades */
.elige-bloque-espaciado.expo-video {
    margin-top: 7.5rem; /* 120px */
    padding-top: 0;
    padding-bottom: 0;
}

.expo-video__titulo {
    font-family: var(--font-hero, 'Lexend', sans-serif);
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary, #0f172a);
    text-align: center;
    margin: 0;
}

.expo-video__container {
    max-width: 68rem;
    margin: 0 auto;
}

.expo-video__wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: clamp(1rem, 2vw, 1.5rem);
    box-shadow: 0 1rem 3rem rgba(15, 23, 42, 0.15);
    background: #000000;
}

.expo-video__player {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

/* Tema oscuro */
[data-theme="dark"] .expo-video {
    background: #0f172a;
}

[data-theme="dark"] .expo-video__titulo {
    color: #f1f5f9;
}

[data-theme="dark"] .expo-video__wrapper {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
}
