/* ===================================
   CALIDA WELLNESS FACILITIES SECTION
=================================== */

.cw-facilities-section {
    padding: 100px 20px;
    background: #FFF;
}

.cw-facilities-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* SECTION HEADER */

.cw-facilities-header {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}

.cw-section-eyebrow {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #dc7b13;
}

.cw-facilities-header h2 {
    margin: 0 0 18px;

    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.15;
}

.cw-facilities-header p {
    max-width: 700px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;

    color: #66645f;
}


/* ===================================
   FACILITY TABS
=================================== */

.cw-facility-tabs {
    max-width: 760px;

    display: flex;
    align-items: center;

    margin: 0 auto 34px;
    padding: 5px;

    background: #eee9df;

    border-radius: 50px;
}

.cw-facility-tab {
    flex: 1;

    padding: 15px 20px;

    border: 0;
    outline: none;

    background: transparent;

    border-radius: 50px;

    color: #25292c;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.cw-facility-tab:hover {
    color: #dc7b13;
}

.cw-facility-tab.active {
    background: #dc7b13;

    color: #ffffff;

    box-shadow:
        0 6px 18px rgba(220, 123, 19, 0.25);
}


/* ===================================
   TAB CONTENT
=================================== */

.cw-facility-content {
    display: none;
}

.cw-facility-content.active {
    display: block;

    animation: cwFacilityFade 0.45s ease;
}

@keyframes cwFacilityFade {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ===================================
   FACILITY IMAGE GRID
=================================== */

.cw-facility-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.cw-facility-image {
    position: relative;

    height: 310px;

    overflow: hidden;

    border-radius: 14px;

    background: #e9e5dc;

    box-shadow:
        0 12px 35px rgba(35, 39, 42, 0.08);
}

.cw-facility-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.cw-facility-image:hover img {
    transform: scale(1.05);
}


/* SUBTLE IMAGE OVERLAY */

.cw-facility-image::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.08),
            transparent 45%
        );
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .cw-facilities-section {
        padding: 80px 20px;
    }

    .cw-facility-grid {
        gap: 16px;
    }

    .cw-facility-image {
        height: 250px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 767px) {

    .cw-facilities-section {
        padding: 65px 16px;
    }

    .cw-facilities-header {
        margin-bottom: 30px;
    }

    .cw-facilities-header h2 {
        font-size: 34px;
    }

    .cw-facilities-header p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* MOBILE TABS */

    .cw-facility-tabs {
        width: 100%;

        overflow-x: auto;

        justify-content: flex-start;

        padding: 5px;

        border-radius: 12px;

        scrollbar-width: none;
    }

    .cw-facility-tabs::-webkit-scrollbar {
        display: none;
    }

    .cw-facility-tab {
        flex: 0 0 auto;

        min-width: 210px;

        padding: 13px 18px;

        white-space: nowrap;

        border-radius: 9px;
    }


    /* MOBILE IMAGES */

    .cw-facility-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .cw-facility-image {
        height: 260px;

        border-radius: 12px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .cw-facilities-header h2 {
        font-size: 30px;
    }

    .cw-facility-image {
        height: 230px;
    }

}

/* ===================================
   STRUCTURED SUPPORT SECTION
=================================== */

.cw-support-section {
    padding: 110px 20px 70px;
    background: #f3eadb;
}

.cw-support-container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    gap: 90px;
    align-items: start;
}


/* ===================================
   LEFT CONTENT
=================================== */

.cw-support-intro {
    position: sticky;
    top: 120px;

    padding-top: 12px;
}

.cw-support-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    color: #d9790c;

    font-size: 11px;
    line-height: 1.4;

    font-weight: 700;
    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.cw-support-eyebrow::before {
    content: "";

    width: 30px;
    height: 1px;

    background: #d9790c;
}


.cw-support-intro h2 {
    max-width: 520px;

    margin: 0 0 22px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.15;
}


.cw-support-intro p {
    max-width: 510px;

    margin: 0 0 15px;

    font-size: 1.08rem;
    color: var(--ink-soft);
    line-height: 1.8;
}


/* ===================================
   SUPPORT CARDS
=================================== */

.cw-support-cards {
    display: flex;
    flex-direction: column;

    gap: 12px;
}


.cw-support-card {
    overflow: hidden;

    background: rgba(255,255,255,0.78);

    border: 1px solid rgba(40,43,45,0.08);

    border-radius: 10px;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


.cw-support-card:hover {
    transform: translateY(-2px);

    border-color: rgba(217,121,12,0.22);

    box-shadow:
        0 10px 35px rgba(44,40,32,0.06);
}


.cw-support-card.active {
    background: #ffffff;

    border-color: rgba(217,121,12,0.28);

    box-shadow:
        0 15px 45px rgba(44,40,32,0.08);
}


/* CARD BUTTON */

.cw-support-card-trigger {
    width: 100%;

    display: grid;

    grid-template-columns: 52px 1fr 34px;

    gap: 16px;
    align-items: center;

    padding: 24px 26px;

    border: 0;

    background: transparent;

    color: inherit;

    text-align: left;

    cursor: pointer;
}


/* NUMBER */

.cw-support-number {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(217,121,12,0.35);

    border-radius: 50%;

    color: #d9790c;


    font-size: 14px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.cw-support-card.active .cw-support-number {
    background: #d9790c;

    color: #ffffff;
}


/* TITLE */

.cw-support-title {
    color: #292c2e;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;
    line-height: 1.35;

    font-weight: 600;
}


/* PLUS / MINUS ICON */

.cw-support-icon {
    position: relative;

    width: 28px;
    height: 28px;

    border: 1px solid rgba(217,121,12,0.35);

    border-radius: 50%;
}


.cw-support-icon::before,
.cw-support-icon::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    background: #d9790c;

    transform: translate(-50%, -50%);

    transition: transform 0.3s ease;
}


.cw-support-icon::before {
    width: 9px;
    height: 1px;
}


.cw-support-icon::after {
    width: 1px;
    height: 9px;
}


.cw-support-card.active .cw-support-icon::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}


/* ===================================
   EXPANDING CONTENT
=================================== */

.cw-support-card-content {
    display: grid;

    grid-template-rows: 0fr;

    transition: grid-template-rows 0.4s ease;
}


.cw-support-card.active .cw-support-card-content {
    grid-template-rows: 1fr;
}


.cw-support-card-content-inner {
    overflow: hidden;
}


.cw-support-card-content p {
    max-width: 540px;

    margin: 0;

    padding:
        0
        78px
        27px
        94px;

    color: #6c6962;

    font-size: 14px;
    line-height: 1.75;
}


/* ===================================
   DISCLAIMER
=================================== */

.cw-support-disclaimer {
    width: 100%;
    max-width: 1180px;

    margin: 55px auto 0;

    padding-top: 22px;

    display: flex;
    align-items: center;
    gap: 12px;

    border-top: 1px solid rgba(40,43,45,0.12);
}


.cw-disclaimer-icon {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid #d9790c;

    border-radius: 50%;

    color: #d9790c;

    font-family: Georgia, serif;

    font-size: 12px;
    font-style: italic;
}


.cw-support-disclaimer p {
    margin: 0;

    color: #77736b;

    font-size: 12px;
    line-height: 1.6;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .cw-support-section {
        padding: 85px 20px 60px;
    }

    .cw-support-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .cw-support-intro {
        position: static;
    }

    .cw-support-intro h2 {
        max-width: 700px;
    }

    .cw-support-intro p {
        max-width: 700px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 767px) {

    .cw-support-section {
        padding: 65px 16px 45px;
    }

    .cw-support-container {
        gap: 32px;
    }

    .cw-support-intro {
        padding-top: 0;
    }

    .cw-support-intro h2 {
        margin-bottom: 18px;

        font-size: 34px;
        line-height: 1.12;
    }

    .cw-support-intro p {
        font-size: 14px;
        line-height: 1.75;
    }


    /* CARDS */

    .cw-support-card-trigger {
        grid-template-columns: 42px 1fr 28px;

        gap: 12px;

        padding: 18px 16px;
    }

    .cw-support-number {
        width: 40px;
        height: 40px;

        font-size: 12px;
    }

    .cw-support-title {
        font-size: 17px;
    }

    .cw-support-icon {
        width: 26px;
        height: 26px;
    }


    /* CONTENT */

    .cw-support-card-content p {
        padding:
            0
            48px
            20px
            70px;

        font-size: 13px;
    }


    /* DISCLAIMER */

    .cw-support-disclaimer {
        margin-top: 35px;

        align-items: flex-start;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .cw-support-intro h2 {
        font-size: 30px;
    }

    .cw-support-card-trigger {
        grid-template-columns: 36px 1fr 26px;

        gap: 10px;

        padding: 16px 14px;
    }

    .cw-support-number {
        width: 34px;
        height: 34px;
    }

    .cw-support-title {
        font-size: 16px;
    }

    .cw-support-card-content p {
        padding:
            0
            42px
            18px
            60px;
    }

}
/* ==========================================
   FACILITIES / AMENITIES SECTION
========================================== */

.cw-amenities-section {
    padding: 100px 20px;
    background: #FFF;
}


.cw-amenities-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* ==========================================
   HEADER
========================================== */

.cw-amenities-header {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}


.cw-amenities-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: #d9790c;

    font-size: 11px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.cw-amenities-header h2 {
    margin: 0 0 16px;

    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.15;
}


.cw-amenities-header p {
    max-width: 650px;

    margin: 0 auto;
font-size: 1.08rem;
    color: var(--ink-soft);
    line-height: 1.75;
}


/* ==========================================
   FACILITIES GRID
========================================== */

.cw-amenities-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* ==========================================
   FACILITY CARD
========================================== */

.cw-amenity-card {
    min-height: 190px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 28px 22px;

    text-align: center;

    background: #f6f3ed;

    border: 1px solid rgba(40, 43, 45, 0.06);

    border-radius: 10px;

    box-shadow:
        0 3px 10px rgba(40, 43, 45, 0.05);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.cw-amenity-card:hover {
    transform: translateY(-5px);

    background: #ffffff;

    border-color: rgba(217, 121, 12, 0.25);

    box-shadow:
        0 14px 35px rgba(50, 45, 35, 0.09);
}


/* ==========================================
   ICON
========================================== */

.cw-amenity-icon {
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    color: #d9790c;

    font-size: 40px;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}


.cw-amenity-card:hover .cw-amenity-icon {
    transform: translateY(-3px) scale(1.05);
}


/* ==========================================
   TITLE
========================================== */

.cw-amenity-card h3 {
    margin: 0 0 9px;

    color: #292c2e;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
    line-height: 1.35;

    font-weight: 600;
}


/* ==========================================
   DESCRIPTION
========================================== */

.cw-amenity-card p {
    max-width: 230px;

    margin: 0;

    color: #77736b;

    font-size: 13px;
    line-height: 1.65;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1024px) {

    .cw-amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 767px) {

    .cw-amenities-section {
        padding: 70px 16px;
    }


    .cw-amenities-header {
        margin-bottom: 38px;
    }


    .cw-amenities-header h2 {
        font-size: 34px;
    }


    .cw-amenities-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }


    .cw-amenity-card {
        min-height: 165px;

        padding: 22px 14px;
    }


    .cw-amenity-icon {
        height: 44px;

        margin-bottom: 13px;

        font-size: 34px;
    }


    .cw-amenity-card h3 {
        font-size: 16px;
    }


    .cw-amenity-card p {
        font-size: 12px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .cw-amenities-header h2 {
        font-size: 30px;
    }


    .cw-amenities-grid {
        grid-template-columns: 1fr;
    }


    .cw-amenity-card {
        min-height: auto;

        padding: 25px 20px;
    }


    .cw-amenity-card p {
        max-width: 300px;
    }

}

/* =========================================
   CONTINUED PROGRESS SECTION
========================================= */

.cw-progress-section {
    position: relative;

    padding: 105px 20px;

    background: #fffaf2;

    overflow: hidden;
}


/* SUBTLE DECORATIVE BACKGROUND */

.cw-progress-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -250px;
    right: -180px;

    border: 1px solid rgba(217, 121, 12, 0.12);

    border-radius: 50%;
}


.cw-progress-section::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    bottom: -190px;
    left: -120px;

    border: 1px solid rgba(217, 121, 12, 0.1);

    border-radius: 50%;
}


.cw-progress-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.cw-progress-header {
    max-width: 760px;

    margin-bottom: 55px;
}


.cw-progress-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 16px;

    color: #d9790c;

    font-size: 11px;

    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.cw-progress-eyebrow::before {
    content: "";

    width: 30px;
    height: 1px;

    background: #d9790c;
}


.cw-progress-header h2 {
    max-width: 720px;

    margin: 0 0 20px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.15;
}


.cw-progress-header h2 span {
    color: #d9790c;
}


.cw-progress-header > p {
    max-width: 690px;

    margin: 0;


    line-height: 1.8;
}


/* =========================================
   CARDS GRID
========================================= */

.cw-progress-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(40, 43, 45, 0.12);

    border-bottom: 1px solid rgba(40, 43, 45, 0.12);
}


/* =========================================
   CARD
========================================= */

.cw-progress-card {
    position: relative;

    min-height: 300px;

    padding: 34px 28px;

    border-right: 1px solid rgba(40, 43, 45, 0.12);

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}


.cw-progress-card:first-child {
    border-left: 1px solid rgba(40, 43, 45, 0.12);
}


.cw-progress-card:hover {
    background: #ffffff;

    transform: translateY(-5px);
}


/* CARD TOP */

.cw-progress-top {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 42px;
}


.cw-progress-number {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border: 1px solid rgba(217, 121, 12, 0.45);

    border-radius: 50%;

    color: #d9790c;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;

    transition:
        background 0.35s ease,
        color 0.35s ease;
}


.cw-progress-line {
    width: 45px;
    height: 1px;

    background: rgba(217, 121, 12, 0.3);
}


.cw-progress-card:hover .cw-progress-number {
    background: #d9790c;

    color: #ffffff;
}


/* CARD CONTENT */

.cw-progress-card h3 {
    margin: 0 0 15px;

    color: #292c2e;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;

    line-height: 1.3;

    font-weight: 600;
}


.cw-progress-card p {
    margin: 0;

    color: #747069;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================
   BOTTOM NOTE
========================================= */

.cw-progress-note {
    max-width: 850px;

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 38px;

    padding: 18px 22px;

    background: #f3eadb;

    border-left: 3px solid #d9790c;

    border-radius: 0 7px 7px 0;
}


.cw-progress-note-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    color: #d9790c;
}


.cw-progress-note-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.cw-progress-note p {
    margin: 0;

    color: #5f5c56;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .cw-progress-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .cw-progress-card {
        border-bottom: 1px solid rgba(40, 43, 45, 0.12);
    }


    .cw-progress-card:nth-child(2) {
        border-right: 1px solid rgba(40, 43, 45, 0.12);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .cw-progress-section {
        padding: 70px 16px;
    }


    .cw-progress-header {
        margin-bottom: 38px;
    }


    .cw-progress-header h2 {
        font-size: 36px;

        letter-spacing: -0.7px;
    }


    .cw-progress-header > p {
        font-size: 14px;
    }


    .cw-progress-grid {
        grid-template-columns: 1fr;

        border: 0;

        gap: 12px;
    }


    .cw-progress-card,
    .cw-progress-card:first-child {
        min-height: auto;

        padding: 25px 22px;

        background: #ffffff;

        border: 1px solid rgba(40, 43, 45, 0.1);

        border-radius: 9px;
    }


    .cw-progress-top {
        margin-bottom: 24px;
    }


    .cw-progress-card h3 {
        font-size: 19px;
    }


    .cw-progress-note {
        margin-top: 28px;

        align-items: flex-start;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .cw-progress-header h2 {
        font-size: 31px;
    }


    .cw-progress-card {
        padding: 22px 18px;
    }


    .cw-progress-note {
        padding: 16px;
    }

}
/* ========================================
   MID PAGE CONVERSION CTA
======================================== */

.cw-mid-cta-section {
    position: relative;

    padding: 75px 20px;

    background: #657d61;

    overflow: hidden;
}


/* DECORATIVE CIRCLE */

.cw-mid-cta-section::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    top: -230px;
    right: 10%;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;
}


.cw-mid-cta-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 70px;
}


/* CONTENT */

.cw-mid-cta-content {
    max-width: 710px;
}


.cw-mid-cta-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #f2a623;

    font-size: 11px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.cw-mid-cta-eyebrow::before {
    content: "";

    width: 30px;
    height: 1px;

    background: #f2a623;
}


.cw-mid-cta-content h2 {
    max-width: 700px;

    margin: 0 0 17px;

    color: #ffffff;

     font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.15;
}


.cw-mid-cta-content h2 span {
    color: #ffc04d;
}


.cw-mid-cta-content p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;

    line-height: 1.75;
}


/* CTA ACTION */

.cw-mid-cta-action {
    min-width: 230px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;
}


.cw-mid-cta-button {
    min-width: 225px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 16px 23px;

    background: #df7d08;

    border: 1px solid #df7d08;

    border-radius: 50px;

    color: #ffffff;

    font-size: 14px;

    line-height: 1;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(34, 40, 31, 0.18);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.cw-mid-cta-button svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;

    transition: transform 0.3s ease;
}


.cw-mid-cta-button:hover {
    background: #c96e04;

    transform: translateY(-2px);

    box-shadow:
        0 14px 35px rgba(34, 40, 31, 0.25);
}


.cw-mid-cta-button:hover svg {
    transform: translateX(4px);
}


.cw-mid-cta-note {
    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;

    text-align: center;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .cw-mid-cta-container {
        flex-direction: column;

        align-items: flex-start;

        gap: 35px;
    }


    .cw-mid-cta-action {
        align-items: flex-start;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .cw-mid-cta-section {
        padding: 60px 16px;
    }


    .cw-mid-cta-container {
        gap: 30px;
    }


    .cw-mid-cta-content h2 {
        font-size: 34px;
    }


    .cw-mid-cta-content p {
        font-size: 14px;
    }


    .cw-mid-cta-action {
        width: 100%;
    }


    .cw-mid-cta-button {
        width: 100%;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .cw-mid-cta-content h2 {
        font-size: 30px;
    }

}