﻿.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    transition: transform .2s ease;
}

    .gallery-item img:hover {
        transform: scale(1.05);
    }

.gallery-caption {
    margin-top: 6px;
    font-size: 0.85rem;
    text-align: center;
    color: #6c757d;
}

