/* Centrado del contenedor */
.container.section {
    clear: both;
    display: block;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid #000;
    border-radius: 10px;
    cursor: pointer;
}

/* Modal con fondo gris */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.95);
    justify-content: center;
    align-items: center;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 85%;
    border: 1px solid #000;
    border-radius: 15px;
}