/* ============================================================
   ESTILO.CSS - VIDEO GENIAL /7/
   ============================================================ */

/* --- CONTENEDOR DE VIDEOS: 3 COLUMNAS --- */
.contenedor-video {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto;
    justify-items: center;
}

/* --- CADA VIDEO / IFRAME --- */
.contenedor-video video,
.contenedor-video iframe {
    width: 300px;
    height: 300px;
    border-radius: 25px;
    border: 2px solid black;
}

/* --- TEXTO DEBAJO DE CADA VIDEO --- */
.contenedor-video p {
    color: black;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 25px;
    text-align: center;
    margin: 10px auto;
    padding: 10px;
    max-width: 300px;
    background: none;
    border: 2px solid black;
    border-radius: 30px;
    font-weight: bold;
}

/* --- ENLACE --- */
.contenedor-video a:hover p {
    color: red;
}

/* --- RESPONSIVE --- */
@media (max-width: 1000px) {
    .contenedor-video {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .contenedor-video {
        grid-template-columns: 1fr;
    }
    .contenedor-video video,
    .contenedor-video iframe {
        width: 90vw;
        height: 90vw;
        max-width: 300px;
        max-height: 300px;
    }
}
