@media screen and (max-width: 992px) {
    .main {
        .main__items {
            .main__photos {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 5px;
                margin-top: 10px;
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .main {
        .main__items {
            .main__img {
                max-height: 300px;
            }
        }
    }
}

@media screen and (max-width: 576px) {
    .main {
        .main__items {
            .main__photos {
                grid-template-columns: repeat(2, 1fr);
                img {
                    height: 200px;
                }
            }
        }
    }
}
