/* =========================================================
   RAIN SPREE
   SEE RAIN SPREE IN ACTION
   ========================================================= */

.rs-action-section {
    width: 100%;
    padding: 70px 0;

    background: #ffffff;

    box-sizing: border-box;
}


/* =========================================================
   FULL WIDTH CONTAINER
   ========================================================= */

.rs-action-container {
    width: calc(100% - 80px);

    max-width: 1440px;

    margin: 0 auto;

    box-sizing: border-box;
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.rs-action-header {
    width: 100%;

    margin: 0 0 32px;

    text-align: center;
}


.rs-action-eyebrow {
    display: block;

    margin: 0 0 8px;

    color: #3c7436;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    line-height: 1.4;

    text-transform: uppercase;
}


.rs-action-title {
    max-width: 1100px;

    margin: 0 auto 12px;

    color: #29472d;

    font-family:
        "Cormorant Garamond",
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 4vw, 62px);

    font-weight: 600;

    line-height: 1.02;

    letter-spacing: -0.5px;
}


/*
 * We deliberately DON'T use <br> here.
 * The browser will naturally keep the heading balanced.
 */

.rs-action-description {
    max-width: 820px;

    margin: 0 auto;

    color: #5f665f;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================================================
   VIDEO + CONTENT
   ========================================================= */

.rs-action-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 2.15fr)
        minmax(300px, 1fr);

    gap: 24px;

    width: 100%;

    align-items: stretch;
}


/* =========================================================
   VIDEO
   ========================================================= */

.rs-action-video-wrap {
    width: 100%;

    min-width: 0;
}


.rs-action-video {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 22px;

    background: #edf1e8;

    box-shadow:
        0 12px 30px rgba(40, 60, 40, 0.12);
}


.rs-action-video video {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
}


/* =========================================================
   INFORMATION CARD
   ========================================================= */

.rs-action-content {
    width: 100%;

    min-width: 0;

    box-sizing: border-box;

    padding: 34px 36px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-radius: 22px;

    background: #f1f6e9;

    border: 1px solid rgba(61, 102, 55, 0.12);
}


/* =========================================================
   INFORMATION TITLE
   ========================================================= */

.rs-action-content-title {
    margin: 0 0 25px;

    color: #29472d;

    font-family:
        "Cormorant Garamond",
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;

    font-weight: 600;

    line-height: 1.1;
}


/* =========================================================
   FEATURES
   ========================================================= */

.rs-action-features {
    display: flex;

    flex-direction: column;

    gap: 20px;

    width: 100%;
}


.rs-action-feature {
    display: flex;

    align-items: center;

    gap: 14px;

    width: 100%;

    min-width: 0;
}


/* =========================================================
   FEATURE ICON
   ========================================================= */

.rs-action-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid rgba(51, 108, 53, 0.12);

    color: #347437;

    font-size: 15px;
}


/* =========================================================
   FEATURE TEXT
   ========================================================= */

.rs-action-feature-text {
    display: flex;

    flex-direction: column;

    gap: 3px;

    min-width: 0;
}


.rs-action-feature-text strong {
    display: block;

    margin: 0;

    color: #304432;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.3;
}


.rs-action-feature-text span {
    display: block;

    color: #626a62;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 12px;

    line-height: 1.45;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

    .rs-action-container {
        width: calc(100% - 120px);
    }

    .rs-action-layout {
        grid-template-columns:
            minmax(0, 2.2fr)
            minmax(320px, 1fr);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .rs-action-container {
        width: calc(100% - 40px);
    }

    .rs-action-layout {
        grid-template-columns:
            minmax(0, 1.7fr)
            minmax(270px, 1fr);

        gap: 18px;
    }

    .rs-action-content {
        padding: 28px 25px;
    }

    .rs-action-content-title {
        font-size: 27px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .rs-action-section {
        padding: 50px 0;
    }

    .rs-action-container {
        width: calc(100% - 28px);
    }

    .rs-action-header {
        margin-bottom: 25px;
    }

    .rs-action-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .rs-action-title {
        font-size: 40px;
    }

    .rs-action-description {
        font-size: 14px;
    }

    .rs-action-layout {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .rs-action-video {
        border-radius: 18px;
    }

    .rs-action-content {
        padding: 28px 24px;

        border-radius: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .rs-action-container {
        width: calc(100% - 22px);
    }

    .rs-action-title {
        font-size: 34px;
    }

    .rs-action-content-title {
        font-size: 26px;
    }

    .rs-action-feature {
        gap: 11px;
    }

    .rs-action-icon {
        flex-basis: 34px;

        width: 34px;
        height: 34px;
    }

}