﻿
.shots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.shot {
    max-width: 420px;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 19.5;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    object-fit: cover;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .shots {
        grid-template-columns: repeat(2, 1fr);
    }
}


