.page-node-type-article.page-node-381 .node__content {
    width: 100%;
}



/* --- Split Layout --- */
.carousel-split {
    display: flex;
    flex-direction: row;
    height: 80vh;
    overflow: hidden;
}

.carousel-image {
    flex: 1;
    position: relative;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

/* --- Text Side --- */
.carousel-copy {
    flex: 1;
    background: #fff;
    color: #222;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    padding: 2rem 3rem;
    overflow: hidden;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.carousel-text {
    overflow-y: auto;
    max-height: 70vh;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
    padding-right: 1rem;
}

.carousel-text::-webkit-scrollbar {
    width: 8px;
}

.carousel-text::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

/* --- Headings --- */
.carousel-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.carousel-text p {
    font-size: .95rem;
    line-height: 1.5rem;
}

.carousel-text ul li {
    margin-bottom: .5rem;
    line-height: 1.4rem;
    font-size: .9rem;
}

/* --- Controls (reposition to edges) --- */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev i,
.carousel-control-next i {
    background: rgba(0, 0, 0, 0.8);
    font-size: 2rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .carousel-split {
        flex-direction: column;
        height: auto;
    }

    .carousel-image img {
        border-radius: 0;
        height: 50vh;
    }

    .carousel-copy {
        border-radius: 0;
        padding: 1.5rem;
    }

    .carousel-text {
        max-height: none;
        overflow-y: visible;
    }
}