section.one-stop-subpage .inner_grid {
    max-width: 1260px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 80px 30px;
}

section.one-stop-subpage .inner_grid .page_title {
    text-align: left;
    padding-left: 25px;
    margin-bottom: 20px;
    color: var(--black);
}

section.one-stop-subpage .imageList_wrapper {
    width: 100%;
}

section.one-stop-subpage .imageList {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr);  */
    gap: 10px; /* Space between items */
    /* margin: 20px; */
}

section.one-stop-subpage .imageList.new {
    display: flex;
    flex-wrap: wrap;
}

section.one-stop-subpage .imageList.single .gallery_img:nth-child(3n + 1),
section.one-stop-subpage .imageList.double .gallery_img:nth-child(3n) {
    grid-column: 1 / -1; /* Span full width on every third item */
    padding-bottom: 80%;
}

section.one-stop-subpage .imageList {
    grid-template-columns: repeat(2, 1fr); /* Two columns */
}

section.one-stop-subpage .gallery_img {
    background-color: #0C0C0C;
    color: white;
    text-align: center;
    padding-bottom: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

section.one-stop-subpage .gallery_img.full-width {
    width: 100%;
    padding-bottom: 80%;
}

section.one-stop-subpage .gallery_img.half-width {
    width: calc((100% - 10px)/2);
    padding-bottom: calc((100% - 10px)/2);
}


section.one-stop-subpage .imageList .video_wrapper.full-width {
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    position: relative;
    overflow: hidden;
}

section.one-stop-subpage .imageList .video_wrapper.half-width {
    width: 50%;
    padding-bottom: 28.12%;
    height: 0;
}

section.one-stop-subpage .imageList .video_wrapper video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    margin: auto;
}

@media screen and (max-width: 680px) {
    section.one-stop-subpage .inner_grid {
        padding: 50px 20px;
    }

    section.one-stop-subpage .inner_grid .page_title {
        margin-bottom: 20px;
    }
}