.text-cta__wrapper .complimentary-sub-heading {
    margin-left: -22px;
}

.text-cta__wrapper h2 {
    color: #EDD9D4;
    font-size: 55px;
    letter-spacing: 0.1em;
    line-height: 1.090em;
    text-transform: uppercase;
    margin: 0 0 30px -22px;
}

.text-cta__wrapper .btn {
    margin-top: 10px;
}

.text-cta__wrapper .as-const-logo {
    width: fit-content;
    max-width: 100%;
    height: auto;
}

/* Text CTA Horizontal Scroll Styles */
.text-cta__slider-wrapper {
    margin: 30px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.text-cta__horizontal-scroll {
    display: flex;
    gap: 15px;
    width: max-content;
    padding: 10px 0 20px 0;
    animation: autoScroll 20s linear infinite;
    will-change: transform;
}

.text-cta__horizontal-scroll::-webkit-scrollbar {
    display: none;
}

/* Auto-scroll keyframe animation */
@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.text-cta__horizontal-scroll:hover {
    animation-play-state: paused;
}

.text-cta__image-item {
    flex: 0 0 auto;
    width: 200px;
}

.text-cta__image-link {
    display: block;
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.text-cta__image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.text-cta__image-link:hover img {
    transform: scale(1.05);
}

@media(min-width: 768px) {    
    .text-cta__wrapper .complimentary-sub-heading {
        margin-left: 0;
    }

    .text-cta__wrapper h2 {
        font-size: 62px;
        line-height: 0.967em;
        margin: 0 -52px 45px -52px;
    }
    .text-cta__wrapper .as-const-logo {
        max-width: 44%;
    }

    /* Text CTA Horizontal Scroll - Tablet */
    .text-cta__slider-wrapper {
        margin: 40px 0;
    }

    .text-cta__horizontal-scroll {
        gap: 20px;
        animation-duration: 25s;
    }

    .text-cta__image-item {
        width: 250px;
    }

    .text-cta__image-link {
        height: 180px;
    }
}

@media(min-width: 1200px) {    
    .text-cta__wrapper h2 {
        font-size: 5vw;
        margin: 0 0 45px 0;
        position: relative;
        width: 100vw;
        left: 50%;
        transform: translate(-50%, 0) !important;
        text-align: center;
        /* min-width: max-content; */
    }

    .text-cta__wrapper .complimentary-sub-heading {
        margin: 0 0 5px;
    }

    .text-cta__wrapper p {
        max-width: 1040px;
    }

    .text-cta__wrapper .btn {
        margin-top: 20px;
    }

    /* Text CTA Horizontal Scroll - Desktop */
    .text-cta__slider-wrapper {
        margin: 50px 0;
    }

    .text-cta__horizontal-scroll {
        gap: 25px;
        animation-duration: 30s;
    }

    .text-cta__image-item {
        width: 300px;
    }

    .text-cta__image-link {
        height: 220px;
    }
}

@media(min-width: 1900px) { 
    .text-cta__wrapper h2 {
        font-size: 95px;
    }
}