/* ============================================================
   VIDEOS INSTITUCIONALES - Estilos Específicos
   Nota: Los estilos estructurales compartidos se movieron a prensa-multimedia-shared.css
   ============================================================ */

/* ---- Video Modal ---- */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.3s ease;
}

.video-modal--active {
    display: flex;
}

.video-modal__inner {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: var(--color-gray-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background var(--transition-fast);
}

.video-modal__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.video-modal__video {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

.video-modal__title {
    padding: 16px 20px;
    color: var(--color-white);
    font-size: var(--font-size-md);
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}