/*
 Theme Name:  Impreza Child
 Template:    Impreza
 Description: Child theme pro Impreza – vlastní shortcody a styly
 Version:     1.0
*/

/* =============================================
   GALERIE – grid podstránek (child galleries)
   ============================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 24px 0;
    background: transparent;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-item a {
    display: block;
    width: 100%;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-item a:hover img {
    opacity: 0.8;
}

.gallery-title {
    display: block;
    margin-top: 12px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
