.gallery_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

@media (max-width: 992px) {
    .gallery_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.gallery_card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.gallery_card_photo {
    position: relative;
    width: 100%;
    padding-top: 125%;
    overflow: hidden;
    background-color: #f2f2f2;
}

.gallery_card_photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.gallery_card:hover .gallery_card_photo img {
    transform: scale(1.04);
}

.gallery_card_body {
    padding: 14px 2px;
}

.gallery_card_title {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 6px;
}

.gallery_card_text {
    font-size: 14px;
    line-height: 1.4;
    color: #777;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.gallery_card_text p {
    margin: 0;
}

.gallery_pager {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    text-align: center;
}

.gallery_pager #button_catalog_more {
    display: none;
}

.gallery_empty {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    color: #777;
}

.gallery_detail {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.gallery_detail_photos {
    position: relative;
    flex: 1 1 480px;
    max-width: 560px;
}

.gallery_detail_slider {
    position: relative;
    width: 100%;
    padding-top: 125%;
    overflow: hidden;
    background-color: #f2f2f2;
}

.gallery_detail_slider .swiper-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery_detail_slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery_detail_slider .swiper-pagination-bullet {
    background-color: #fff;
    opacity: .6;
}

.gallery_detail_slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.gallery_detail_photos .swiper-button-next,
.gallery_detail_photos .swiper-button-prev {
    width: 36px;
    height: 36px;
    margin-top: -18px;
    background-color: rgba(255, 255, 255, .85);
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.gallery_detail_photos .swiper-button-next {
    right: 12px;
    left: auto;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.gallery_detail_photos .swiper-button-prev {
    left: 12px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 6l-6 6 6 6' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.gallery_detail_body {
    flex: 1 1 360px;
}

.gallery_detail_title {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 20px;
}

.gallery_detail_text {
    font-size: 16px;
    line-height: 1.5;
}

.gallery_detail_text p {
    margin: 0 0 16px;
}

.gallery_detail_back {
    display: inline-block;
    margin-top: 24px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
