.insurance-agent-call-banner.agent-call-cta {
    box-shadow: 0px 25px 50px -12px #0000001A;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid #dbdbdb;
    position: relative;
    overflow: hidden;
    padding: 16px;
}

.insurance-agent-call-banner.agent-call-cta::before {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.insurance-agent-call-banner.agent-call-cta::before {
    left: -50px;
    bottom: -20px;
    width: 112px;
    height: 112px;
    background: linear-gradient(225deg, rgba(59, 130, 246, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 50%;
}

.insurance-agent-call-banner .agent-call-cta-title {
    color: #2B313C !important;
    font-weight: 700;
    font-size: 16px !important;
    line-height: 24px !important;
    margin-bottom: 12px !important;
}

.insurance-agent-call-banner .agent-call-cta-link {
    background-image: linear-gradient(90deg, #2563EB 0%, #4338CA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.insurance-agent-call-banner .agent-call-cta-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, #2563EB 0%, #4338CA 100%);
    font-size: 14px;
    line-height: 100%;
    border-radius: 6px;
    padding: 8px 20px;
    font-weight: 700;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    margin-bottom: 12px;
}

.insurance-agent-call-banner .agent-call-cta-btn:hover {
    transform: translateY(-1px);
    color: #fff;
}

.insurance-agent-call-banner .agent-call-cta-btn:focus {
    outline: none;
    transform: translateY(0);
}

.insurance-agent-call-banner .agent-call-cta-btn-icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 20px;
    background: #547ae6;
    margin-right: 12px;
    position: relative;
}

.insurance-agent-call-banner .agent-call-cta-btn-icon::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    display: block;
    background: url("/images/blueberry/white-phone.svg") no-repeat center/contain;
}

.insurance-agent-call-banner .agent-call-cta-btn-label {
    white-space: nowrap;
}

.insurance-agent-call-banner .agent-call-cta-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
}

.insurance-agent-call-banner .agent-call-cta-agent-name {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    color: #111827;
}

.insurance-agent-call-banner .agent-call-cta-sep {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: #E3E3E3;
    transform: translateY(1px);
    margin: 0px 6px;
}

.insurance-agent-call-banner .agent-call-cta-status {
    color: #16A34A;
    font-size: 10px;
    line-height: 100%;
}

.insurance-agent-call-banner .agent-call-cta-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    margin-right: 6px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 0.5px solid #FFFFFF;
}

.insurance-agent-call-banner .agent-call-cta-agent-section {
    display: grid;
    grid-template-areas: 'stack';
    align-items: center;
    justify-content: center;
}

.insurance-agent-call-banner .agent-call-cta-agent-section>.agent-call-cta-cards {
    grid-area: stack;
    opacity: 0;
    transform: translateY(12px) rotateX(12deg);
    transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 300ms ease;
    pointer-events: none;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.insurance-agent-call-banner .agent-call-cta-agent-section>.agent-call-cta-cards.is-active {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    pointer-events: auto;
    z-index: 2;
}

.insurance-agent-call-banner .agent-call-cta-agent-section>.agent-call-cta-cards.is-exiting {
    opacity: 0;
    transform: translateY(-10px) rotateX(-8deg);
    z-index: 1;
}

@media (min-width: 768px) {
    .insurance-agent-call-banner.agent-call-cta {
        padding: 20px 32px;
    }

    .insurance-agent-call-banner .agent-call-cta-btn {
        font-size: 16px;
        padding: 8px 12px;
    }

    .insurance-agent-call-banner .agent-call-cta-btn-icon {
        margin-right: 8px;
    }

    .insurance-agent-call-banner .agent-call-cta-title {
        font-size: 24px !important;
        line-height: 34px !important;
        font-weight: 800;
        margin-bottom: 0px !important;
    }

    .insurance-agent-call-banner.agent-call-cta::before {
        left: -45px;
        bottom: -45px;
    }
}