.two-rows-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.two-rows-slideshow .slideshow-title {
    padding: 64px 0;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #000;
    font-family: Nunito Sans;
}

.two-rows-slideshow .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    padding: 0 36px;
    max-width: 1920px;
    margin: 0 auto;
}

.two-rows-slideshow .image-wrapper {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
}

.two-rows-slideshow .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Splide Styles */
.two-rows-slideshow .custom-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
}

.two-rows-slideshow .splide__arrow {
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.two-rows-slideshow .splide__arrow img {
    width: 10px;
    height: auto;
}

.two-rows-slideshow .splide__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 4px;
}

.two-rows-slideshow .splide__pagination li {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.two-rows-slideshow .splide__pagination li .splide__pagination__page {
    width: 75px;
    background-color: #d4d4d4;
    height: 4px;
    padding: 0;
    margin: 0;
    border: none;
    cursor: pointer;
    transition: background-color .2s;
}

.two-rows-slideshow .splide__pagination li .splide__pagination__page.is-active {
    background-color: #000;
}

.two-rows-slideshow .image-preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.two-rows-slideshow .image-preview-modal.active {
    display: flex;
}

.two-rows-slideshow .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.4s ease;
}

.two-rows-slideshow .image-preview-modal.active .modal-overlay {
    background-color: rgba(0, 0, 0, 0.8);
}

.two-rows-slideshow .modal-content {
    position: relative;
    z-index: 1001;
    width: 58vw;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.two-rows-slideshow .modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 7px;
    opacity: 0;
    transition: 0.2s;
    transform: scale(0.3);
}

.two-rows-slideshow .image-preview-modal.active .modal-content img {
    opacity: 1;
    width: 100%;
    height: auto;
}

@media (max-width: 959px) {
    .two-rows-slideshow .grid-container {
        padding: 0 7px;
    }

    .two-rows-slideshow .slideshow-title {
        font-size: 32px;
    }

    .two-rows-slideshow .splide__pagination li .splide__pagination__page {
        width: 15px;
    }
}
