.event-gallery {
    margin: 30px 0;
}

.event-gallery__title {
    font-size: 22px;
    margin-bottom: 15px;
}

.event-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.event-gallery__item {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background: #f4f4f4;
    aspect-ratio: 1 / 1;
}

.event-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.event-gallery__item:hover img {
    transform: scale(1.05);
}
