/* =========================================
   MEMORIA AUDIOVISUAL - ACIEM NDS
   ========================================= */

.videos-section {
    padding: 64px 0;
    background: #ffffff;
    border-top: 1px solid #dbe4ea;
}

.videos-section h2 {
    margin: 6px 0 12px;
    color: #082b4c;
}

.videos-intro {
    max-width: 850px;
    margin: 0 0 30px;
    color: #536273;
    line-height: 1.65;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.video-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #dbe4ea;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(6, 31, 55, .08);
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #061f37;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-info {
    padding: 16px 18px 19px;
}

.video-categoria {
    display: block;
    margin-bottom: 6px;
    color: #d71920;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.video-info h3 {
    margin: 0 0 8px;
    color: #082b4c;
    font-size: 1.05rem;
}

.video-info p {
    margin: 0;
    color: #536273;
    font-size: .88rem;
    line-height: 1.5;
}

.videos-canal {
    margin-top: 30px;
    text-align: center;
}

.videos-canal-btn {
    display: inline-block;
    padding: 11px 22px;
    border-radius: 7px;
    background: #d71920;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.videos-canal-btn:hover {
    background: #a91218;
}

.videos-cargando {
    color: #667788;
}

@media (max-width: 700px) {
    .videos-section {
        padding: 46px 0;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }
}