.photo-gallery__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 52px;
}

.photo-gallery__header-left {
    flex: 1 1 auto;
}

.photo-gallery__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 52px;
    color: rgba(31, 79, 206, 1);
    margin: 0 0 24px;
}

.photo-gallery__description {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: rgba(27, 27, 27, 1);
    margin: 0;
    max-width: 847px;
}

.photo-gallery__nav {
    display: flex;
    gap: 44px;
    flex-shrink: 0;
    padding-bottom: 4px;
}

.photo-gallery__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(31, 79, 206, 1);
    background: transparent;
    color: rgba(31, 79, 206, 1);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.photo-gallery__btn:hover {
    background: rgba(31, 79, 206, 0.08);
}

.photo-gallery__btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.photo-gallery__btn svg {
    width: 10px;
    height: 20px;
}

.photo-gallery__swiper-outer {
    padding-left: max(30px, calc((100% - 1232px) / 2 + 30px));
}

.photo-gallery__swiper {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
}

.photo-gallery__swiper .swiper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    box-sizing: border-box;
}

.photo-gallery__slide {
    flex: 0 0 504px;
    width: 504px;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
}

.photo-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .photo-gallery__header {
        margin-bottom: 32px;
    }

    .photo-gallery__title {
        font-size: 28px;
        line-height: 35px;
        margin-bottom: 16px;
    }

    .photo-gallery__description {
        font-size: 16px;
        line-height: 24px;
    }

    .photo-gallery__btn {
        width: 38px;
        height: 38px;
    }

    .photo-gallery__slide {
        flex-basis: 400px;
        width: 400px;
        height: 254px;
    }
}

@media (max-width: 640px) {
    .photo-gallery__header,
    .photo-gallery__header-left {
        text-align: left !important;
    }

    .photo-gallery__title {
        font-size: 22px;
        line-height: 29px;
    }

    .photo-gallery__nav {
        gap: 16px;
    }

    .photo-gallery__slide {
        flex-basis: 280px;
        width: 280px;
        height: 178px;
    }

    .photo-gallery__title br,
    .photo-gallery__description br {
        display: none;
    }
}
