/* ==========================================================================
   GRADE DE FOTOS E VIDEOS DO ENSAIO (galeria.css) [1]
   ========================================================================== */
.gallery-section {
    margin-top: 3rem;
}

/* Grid de duas colunas para fotos do ensaio */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Proporção 3:4 que deixa as fotos de retrato elegantes */
.gallery-item {
    aspect-ratio: 3 / 4;
    background-color: var(--color-white);
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.gallery-item:hover {
    opacity: 0.95;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Envoltório do player de vídeo */
.video-gallery-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background-color: #000;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}