.block-worksingle {
    color: #1E2237;
    margin-block-end: 100px !important;
    overflow: hidden;
    width: 100vw;
    margin-left: calc((-100vw + var(--wp--style--global--content-size)) / 2);
}

.block-worksingle .acf-innerblocks-container {
    width: var(--wp--style--global--content-size);
    margin: 0 auto;
}

.block-worksingle .work-column + .work-column {
    justify-content: flex-end;
    display: flex;
    align-items: center;
}

.block-worksingle .slider-work {
    margin-block-start: 50px;
}

/* === SLIDE CARD STYLE (for <a class="slide"> layout) === */
.block-worksingle .slider-work .slide {
    width: 394px !important;
    box-sizing: border-box;
    color: #1E2237;
    text-decoration: none;
    display: block;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
    transition: all 0.3s ease;
}


/* === IMAGE CONTAINER === */
.block-worksingle .slider-work .slide .slide-media {
    width: 100%;
    overflow: hidden;
    height: 394px;
    margin-bottom: 10px;
    position: relative;
}

.block-worksingle .slider-work .slide .slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;

}



/* === TEXT === */
.block-worksingle .slider-work .slide p {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 24px;
    color: #9AA0AE;
}

.block-worksingle .slider-work .slide h3 {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
}

/* === ARROWS === */
.block-worksingle .work-arrows {
    display: flex;
    gap: 12px;
    margin-top: 0;
}

.block-worksingle .work-arrows .slick-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.block-worksingle .arrow-prev,
.block-worksingle .arrow-next {
    width: 44px;
    height: 44px;
    border: none;
    background: #FFFFFF;
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

.block-worksingle .arrow-prev:before,
.block-worksingle .arrow-next:before {
    content: "";
    width: 17px;
    height: 15px;
    display: block;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
}

.block-worksingle .arrow-prev:before {
    background-image: url(../../assets/images/slider-arrow-left.svg);
}

.block-worksingle .arrow-next:before {
    background-image: url(../../assets/images/slider-arrow-right.svg);
}

.block-worksingle .work-arrows .arrow-prev.slick-disabled:before,
.block-worksingle .work-arrows .arrow-next.slick-disabled:before {
    opacity: 0.4;
}

/* === SLICK ALIGNMENT === */
.block-worksingle .slider-work .slick-list {
    overflow: visible;
    margin: 0;
    padding-left: calc((100vw - var(--wp--style--global--content-size)) / 2);
}

.block-worksingle .slider-work .slick-slide {
    margin: 0;
}

/* === TYPOGRAPHY === */
.block-worksingle h2 {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
}

.block-worksingle p {
    font-size: 16px;
    line-height: 24px;
}

/* === RESPONSIVE === */
@media only screen and (max-width: 1300px) {
    .block-worksingle .slider-work .slick-list {
        padding-left: 0;
    }
}

@media only screen and (max-width: 1200px) {
    .block-worksingle {
        margin-left: -5vw;
    }
}

@media only screen and (max-width: 800px) {
    .block-worksingle .slider-work .slide {
        width: 320px !important;
    }
    .block-worksingle .acf-innerblocks-container{
        padding: 0 5vw;
        box-sizing: border-box;
    }
    .block-worksingle .work-column + .work-column {
        justify-content: flex-start;
    }
    .block-worksingle .slider-work .slide .slide-media {
        height: 320px;
    }
}
