.carCategory{ /*в контент*/
    display: none ;
}

.activeCategory + .carCategory {
    display: block;
}

.tr-gallery {
    grid-gap: 10px;
    display: grid;
    grid-template-columns: 1fr .5fr .5fr;
    position: relative;
    width: 100%;
    max-width: 1358px;
    margin: 0 auto;
    padding-top: 43px;
}

.tr-gallery a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.tr-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tr-gallery a:nth-child(1) {
    grid-row: 1 / span 2;
    grid-column: 1 / 2;
}

.more-photos {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Адаптив под телефоны */
@media (max-width: 768px) {
    .tr-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .tr-gallery a:nth-child(1) {
        grid-row: auto;
        grid-column: auto;
    }
}

.pswp__img--placeholder {
    display: none;
}
