/* ========================================
   STAY IN THE LOOP SECTION
   ======================================== */

.stay-in-loop-section {
    position: relative;
    background: #D5A832;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    margin: 15px 0 0;
    padding: 20px;
}

/* Inner bordered container — wraps both panels */
.stay-in-loop-inner-border {
    border: 1px solid #FFFFFF;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    /* border-bottom: none; */
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 260px;
}

/* Individual panel */
.stay-in-loop-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 60px 48px;
    text-align: center;
}

/* Vertical divider with gap at top and bottom */
.stay-in-loop-divider {
    width: 1px;
    background: #FFFFFF;
    flex-shrink: 0;
    align-self: stretch;
    margin: 40px 0;
}

/* Main Heading */
.stay-in-loop-title {
    font-family: 'Marcellus', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 1.4px 1.4px 0px #00000080;
}

/* Description Text */
.stay-in-loop-description {
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    max-width: 420px;
}

/* CTA Button */
.stay-in-loop-share-btn {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    color: #D5A832;
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    font-size: 24px;
    padding: 10px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-shadow: 1.4px 0.4px 0px #00000080;
}

.stay-in-loop-share-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #D5A832;
}

.stay-in-loop-share-btn i {
    font-size: 16px;
}

/* Decorative Icon — positioned inside right panel */
.stay-in-loop-icon {
    position: absolute;
    pointer-events: none;
    width: 77px;
    height: 77px;
    bottom: 0;
    right: 12%;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 900px) {
    .stay-in-loop-panel {
        padding: 48px 32px;
        gap: 20px;
    }

    .stay-in-loop-title {
        font-size: 22px;
    }

    .stay-in-loop-description {
        font-size: 18px;
    }

    .stay-in-loop-share-btn {
        font-size: 18px;
        padding: 10px 22px;
    }
}

/* Mobile — stack vertically */
@media (max-width: 768px) {
    .stay-in-loop-section {
        margin: 20px 0 0;
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
        padding: 15px;
    }

    .stay-in-loop-inner-border {
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
        flex-direction: column;
    }

    /* Divider becomes horizontal on mobile with gap on left and right */
    .stay-in-loop-divider {
        width: auto;
        height: 1px;
        margin: 0 40px;
        align-self: stretch;
    }

    .stay-in-loop-panel {
        padding: 40px 24px;
        gap: 20px;
    }

    .stay-in-loop-title {
        font-size: 24px;
    }

    .stay-in-loop-description {
        font-size: 16px;
        max-width: 310px;
    }

    .stay-in-loop-share-btn {
        font-size: 16px;
        padding: 8px 25px;
    }

    .stay-in-loop-icon {
        width: 61px;
        height: 61px;
        bottom: 0;
        right: 10%;
    }
}

/* Mobile small */
@media (max-width: 400px) {
    .stay-in-loop-panel {
        padding: 28px 16px;
        gap: 16px;
    }

    .stay-in-loop-title {
        font-size: 20px;
    }

    .stay-in-loop-description {
        font-size: 15px;
    }

    .stay-in-loop-share-btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    .stay-in-loop-icon {
        width: 50px;
        height: 50px;
    }
}

/* Mobile extra small */
@media (max-width: 360px) {
    .stay-in-loop-title {
        font-size: 18px;
    }

    .stay-in-loop-description {
        font-size: 14px;
    }
}
