/* Row Content Section */
.row__section--content {
    margin-top: 75px;
    margin-bottom: 75px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}


/* Content Wrapper - Two Column Layout */
.section__content--wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 100px;
}

/* Left Column - Heading */
.section__content--left {
    width: 295px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.section__content--left .section__content--left--title {
    max-width: 230px;
    width: 100%;
    position: relative;
    padding-top: 20px;
}

.section__content--left .section__content--left--title:before {
    content: '';
    max-width: 163px;
    width: 100%;
    height: 1px;
    background: #73674C;
    position: absolute;
    top: 0;
    left: 0;
}

/* Right Column - Title & Content */
.section__content--right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: calc(100% - 295px);
}

.section__content--right--title {
    margin-bottom: 20px;
    font-weight: 400;
}

.section__content--right--content {
    font-size: 17px;
    font-weight: 300;
    line-height: 30px;
}

.section__content--right--content p {
    margin: 0 0 20px 0;
}

.section__content--right--content p:last-child {
    margin-bottom: 0;
}

/* Content List - Gallery/Video */
.section__content--list {
    position: relative;
    margin-top: 40px;
    min-height: 400px;
    height: 100%;
}

/* Slider Wrapper - matches about-slider-wrapper: relative h-screen w-full pt-16 md:pt-[7.5rem] */
.row-content-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Slider Container - matches old .slider class */
/* Matches: ts-slider slider h-full w-full md:aspect-video */
.ts-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .ts-slider {
        aspect-ratio: 16 / 9; /* md:aspect-video */
    }
}

/* Slider Wrapper - row__content--list-wrapper (about-slider equivalent) */
/* Base styles - will be overridden by GSAP for animation */
.row__content--list-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Initial state - matches about-slider: absolute right-0 top-16 h-40 md:top-[7.5rem] md:h-auto */
.row-content-slider .row__content--list-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    height: 22.313rem; /* h-40 */
}

@media (max-width: 767.98px) {
    .row-content-slider .row__content--list-wrapper {
        height: 100%;
    }
}

/* Slider Items - matches old .slider__item */
.ts-slider-item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 1;
}

.ts-slider-item.is-active {
    opacity: 1;
    z-index: 2;
}

/* Images and Video in Slider Items */
.ts-slider-item picture,
.ts-slider-item img,
.ts-slider-item video {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
}

.ts-slider-item .picture-object-cover {
    width: 100%;
    height: 100%;
    display: block;
}

.ts-slider-item .image-object-cover {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
}

/* OEmbed Video Container */
.ts-slider-item iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    border: 0;
}

/* OEmbed Container Wrapper */
.ts-slider-item .oembed-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ts-slider-item .oembed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media only screen and (max-width: 767.98px) {
    .row__section--content {
        margin-top: 40px;
        margin-bottom: 0;
    }

    .section__content--wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 60px;
        margin-bottom: 50px;
    }

    .section__content--left {
        width: 100%;
    }

    .section__content--right {
        max-width: 100%;
    }

    .section__content--right--title {
        margin-bottom: 30px;
    }

    .section__content--left .section__content--left--title {
        max-width: max-content;
        line-height: 30px;
    }

    .section__content--left .section__content--left--title:before {
        width: 100%;
    }

    .section__content--right--content p {
        margin-bottom: 30px;
    }

    .section__content--right--content p:last-child {
        margin-bottom: 0;
    }

    .section__content--list {
        margin-top: 20px;
        min-height: 250px;
        width: calc(100% + 40px);
        left: -20px;
        aspect-ratio: 16 / 9;
    }

    .section__content--list .row-content-slider {
        min-height: calc(100vh * 1.5);
        height: auto;
    }
    
    .section__content--list .row-content-slider .row__content--list-wrapper {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 250px;
    }
    .ts-slider-item iframe {
        min-height: 250px;
    }
}