body {
    width: 90%;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
    background-color: violet;
    margin: 0 auto;
}

h1 {
    color: whitesmoke;
    text-align: center;
    text-shadow: 4px 4px 4px darkviolet;
}

/* ----------- GALERÍA ----------- */
.imagenes-drama {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: center;
}

.imagenes-drama figure {
    margin: 0;
    text-align: center;
}

.imagenes-drama img {
    width: 310px;
    height: 210px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
    margin-bottom: 8px;
}

.imagenes-drama figcaption {
    font-size: smaller;
    font-weight: bold;
    color: #333;
    text-align: center;
}

/* -------------------------------
   Móviles en vertical (hasta 480px)
-------------------------------- */
@media (max-width: 480px) and (orientation: portrait) {
    .imagenes-drama {
        grid-template-columns: 1fr;
    }

    .imagenes-drama img {
        width: 90%;
        height: auto;
    }
}

/* -------------------------------
   Móviles en horizontal (landscape)
-------------------------------- */
@media (max-width: 480px) and (orientation: landscape) {
    .imagenes-drama {
        grid-template-columns: repeat(2, 1fr);
    }

    .imagenes-drama img {
        width: 95%;
        height: auto;
    }
}

/* -------------------------------
   Tablets vertical (portrait)
-------------------------------- */
@media (min-width: 481px) and (max-width: 1024px) and (orientation: portrait) {
    .imagenes-drama {
        grid-template-columns: repeat(2, 1fr);
    }

    .imagenes-drama img {
        width: 90%;
        height: auto;
    }
}

/* -------------------------------
   Tablets horizontal (landscape)
-------------------------------- */
@media (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
    .imagenes-drama {
        grid-template-columns: repeat(3, 1fr);
    }

    .imagenes-drama img {
        width: 100%;
        height: auto;
    }
}




