/* .image-gallery {
    padding: 0 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.image-gallery-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1400px;
}

.image-gallery-header p {
    max-width: 850px;
}

.image-gallery-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 100%;
    color: var(--jkpodolog-color-polar-night);
    text-align: center;
}

.image-gallery-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: var(--jkpodolog-color-polar-night);
    text-align: center;
}

.image-gallery-content {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    grid-template-rows: 1fr;
    grid-column-gap: 94px;
    grid-row-gap: 94px;
    text-align: center;
    max-width: 1400px;
    align-items: center;
}

.content {
    grid-area: 1 / 2 / 2 / 3;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.content::-webkit-scrollbar {
    display: none;
}

.nav-prev {
    grid-area: 1 / 1 / 2 / 2;
}

.nav-next {
    grid-area: 1 / 3 / 2 / 4;
}

.image-gallery-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    scroll-snap-align: start;
    flex-shrink: 0;
    margin-right: 50px;
    max-width: 100%;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    position: relative;
}

.image-gallery-image {
    max-width: 100%;
    aspect-ratio: 1100/700;
    object-fit: cover;
    object-position: center center;
    border-radius: 5px;
    min-width: 100%;

}

.image-gallery-item-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    color: var(--jkpodolog-color-polar-night);
    text-align: left;
    width: 100%;
}

@media (max-width: 1200px) {
    .image-gallery {
        padding: 0 20px;
        gap: 30px;
    }

    .image-gallery-title {
        font-size: 30px;
        font-weight: 600;
    }

    .image-gallery-text {
        font-size: 18px;
        line-height: 23px;
        font-weight: 500;
    }

    .image-gallery-content {
        grid-template-columns: 56px 1fr 56px;
        grid-template-rows: 1fr 56px;
        gap: 30px;
        max-width: 600px;
    }

    .image-gallery-header {
        max-width: 600px;
    }

    .image-gallery-item-title {
        text-align: left;
    }

    .content {
        grid-area: 1 / 1 / 2 / 4;
    }

    .nav-prev {
        grid-area: 2 / 1 / 3 / 2;
        width: 56px;
        height: 56px;
    }

    .nav-next {
        grid-area: 2 / 3 / 3 / 4;
        width: 56px;
        height: 56px;
    }
} */