.gallery {
    padding-block: 100px;
}

.gallery__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: var(--container-width);
    margin: 0 auto 50px;
    padding: 0 var(--section-padding-x);
}

.gallery__title {
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(24px, 2.6vw, 40px);
    line-height: 1.3;
    color: var(--color-black);
}

.gallery__arrows {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.gallery__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 100px;
    background: var(--color-beige);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}
.gallery__arrow svg {
    width: 22px;
    height: 22px;
}
.gallery__arrow:hover {
    background: var(--color-active);
}
.gallery__arrow.swiper-button-disabled {
    opacity: 0.4;
    cursor: default;
}

.gallery__slider {
    padding-left: var(--section-padding-x);
}

.gallery__slide {
    width: auto;
}

.gallery__image {
    display: block;
    height: 433px;
    max-height: 40vw;
    width: auto;
    border-radius: 38px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .gallery__image {
        height: 280px;
        max-height: 60vw;
    }


.gallery {
    padding-block: 50px;
}


}


@media (max-width: 480px) {
.why-choose__highlight-head {
  
    flex-direction: column;
}

}
@media (max-width: 390px) {
.why-choose__highlight-title-row {
    align-items: flex-start !important;
    flex-direction: column;
}
}