/* CONTENEDOR DE GALERÍA */
.galeria-sdie {
    margin-top: 40px;
    margin-bottom: 60px;
}

.galeria-sdie h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gris-oscuro);
    margin-bottom: 20px;
}

/* GRID DE IMÁGENES */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* TARJETA */
.galeria-item {
    background: white;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid var(--borde);
    transition: .25s ease;
}

.galeria-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* IMAGEN */
.galeria-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

/* TEXTO DE LA TARJETA */
.galeria-titulo {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
    color: var(--gris-oscuro);
}

.galeria-fecha {
    font-size: 0.85rem;
    color: #777;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 99999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 70%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.lightbox-titulo {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.lightbox-fecha {
    color: #ccc;
    font-size: 0.9rem;
}

.lightbox-cerrar {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
