/* BBM Subsidi — hero callout v3 */
.hero-card .hero-left h1 {
    margin-bottom: 22px;
    line-height: 1.12;
}

.hero-card .hero-left h1 span {
    color: #1554e8;
}

.hero-card .hero-main-copy {
    margin: 0;
    max-width: 760px;
    line-height: 1.62;
}

.hero-cta-callout {
    display: grid;
    grid-template-columns: 58px 1px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    width: 100%;
    margin: 24px 0 22px;
    padding: 18px 20px;
    border: 1px solid #bdd3ff;
    border-left: 5px solid #1554e8;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(232, 242, 255, 0.98), rgba(248, 251, 255, 0.98));
    box-shadow: 0 10px 28px rgba(20, 84, 232, 0.08);
}

.hero-cta-callout-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(145deg, #0d47d9, #2165f2);
    box-shadow: 0 8px 18px rgba(21, 84, 232, 0.22);
}

.hero-cta-callout-icon svg {
    width: 27px;
    height: 27px;
}

.hero-cta-callout-divider {
    width: 1px;
    height: 56px;
    background: #b8cdf8;
}

.hero-cta-callout-copy {
    min-width: 0;
}

.hero-cta-callout-copy strong {
    display: block;
    margin-bottom: 6px;
    color: #0b367f;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.hero-cta-callout-copy > span {
    display: block;
    color: #345785;
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .hero-card .hero-left h1 {
        margin-bottom: 18px;
    }

    .hero-cta-callout {
        margin: 20px 0;
    }
}

@media (max-width: 640px) {
    .hero-card .hero-left h1 {
        line-height: 1.13;
    }

    .hero-card .hero-main-copy {
        line-height: 1.58;
    }

    .hero-cta-callout {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 13px;
        padding: 15px;
        border-radius: 15px;
    }

    .hero-cta-callout-icon {
        width: 44px;
        height: 44px;
    }

    .hero-cta-callout-icon svg {
        width: 22px;
        height: 22px;
    }

    .hero-cta-callout-divider {
        display: none;
    }

    .hero-cta-callout-copy strong {
        font-size: 14px;
        line-height: 1.4;
    }

    .hero-cta-callout-copy > span {
        font-size: 13px;
        line-height: 1.5;
    }
}
