.new-items-gallery-container {
    width: calc(100% - 204px);
    max-width: 1685px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* width: 100%; */
}

.new-items-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
}

@media (max-width: 768px) {
    .new-items-wrapper {
        flex-direction: column;
        gap: 12px;
        max-width: 100vw;
        align-items: center;
    }
}

.swiper-new-items {
    min-width: 0;
    width: 100%;
    max-width: 1735px;
    /* width: 1735px; */

    height: 528px;
    position: relative;
    overflow: hidden;
}

.swiper-new-items .swiper-slide {
    width: 369px;
    max-height: 528px;
}

@media (max-width: 768px) {

    .swiper-new-items {
        width: calc(100vw - 40px);
        height: 630px !important;
    }

    .swiper-new-items .swiper-slide {
        width: calc((100vw - 40px) / 2) !important;

    }

    .swiper-new-items {
        height: 578px;
    }
}

.more {
    text-decoration: none;
    margin-top: 10px;
    width: 124px;
    height: 488px;
    background-color: #2020B3;
    background-image: url('/assets/images/gallery-more.png');
    background-size: 249.55px 250.615px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.08);
}

.more div {
    color: #fff;
    text-align: right;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 17px;
}

@media (max-width: 768px) {
    .more {
        display: none;
    }
}
