/* =========================================================
   WORLD BRAIN CENTER HOSPITAL
   MODERN COMPACT CTA
   ========================================================= */

.wbc-modern-cta {
    margin: 30px 0;
    padding: 22px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #dce4ed;
    border-left: 4px solid #e37816;
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(9, 47, 98, 0.06);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    text-align: left;
}

.wbc-modern-cta * {
    box-sizing: border-box;
}

.wbc-modern-cta-content {
    max-width: 760px;
}

.wbc-modern-cta-label {
    display: block;
    margin-bottom: 5px;

    color: #e37816;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.15px;
    line-height: 1.4;
    text-transform: uppercase;
}

.wbc-modern-cta-title {
    margin: 0 0 6px !important;

    color: #092f62 !important;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 25px !important;
    font-weight: 600 !important;
    letter-spacing: -0.35px;
    line-height: 1.3 !important;
    text-align: left !important;
}

.wbc-modern-cta-title span {
    color: #e37816;
}

.wbc-modern-cta-text {
    margin: 0 !important;

    color: #637083 !important;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 15px !important;
    font-weight: 400;
    line-height: 1.55 !important;
    text-align: left !important;
}

.wbc-modern-cta-text strong {
    color: #092f62;
    font-weight: 700;
}

/* =========================
   BUTTONS
   ========================= */

.wbc-modern-cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 17px;
}

.wbc-modern-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 10px 21px;

    border-radius: 5px;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05px;
    line-height: 1;

    text-decoration: none !important;
    white-space: nowrap;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.wbc-modern-cta-btn:hover {
    transform: translateY(-1px);
}

/* Book Appointment */

.wbc-modern-cta-book {
    background: #e37816;
    border: 1px solid #e37816;
    color: #ffffff !important;
    box-shadow: 0 3px 8px rgba(227, 120, 22, .18);
}

.wbc-modern-cta-book:hover {
    background: #092f62;
    border-color: #092f62;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(9, 47, 98, .18);
}

/* Call */

.wbc-modern-cta-call {
    background: #092f62;
    border: 1px solid #092f62;
    color: #ffffff !important;
    box-shadow: 0 3px 8px rgba(9, 47, 98, .14);
}

.wbc-modern-cta-call:hover {
    background: #e37816;
    border-color: #e37816;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(227, 120, 22, .18);
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 700px) {

    .wbc-modern-cta {
        padding: 21px;
    }

    .wbc-modern-cta-title {
        font-size: 23px !important;
    }

    .wbc-modern-cta-actions {
        margin-top: 16px;
    }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 480px) {

    .wbc-modern-cta {
        margin: 24px 0;
        padding: 19px;
        border-left-width: 3px;
    }

    .wbc-modern-cta-title {
        font-size: 21px !important;
        line-height: 1.35 !important;
    }

    .wbc-modern-cta-text {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .wbc-modern-cta-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 15px;
    }

    .wbc-modern-cta-btn {
        min-height: 45px;
        padding: 10px 8px;
        font-size: 13px;
        white-space: normal;
        text-align: center;
    }

}


/* =========================
   VERY SMALL MOBILE
   ========================= */

@media (max-width: 350px) {

    .wbc-modern-cta-actions {
        grid-template-columns: 1fr;
    }

}