/* ============================================================
   CTA Button Widget
   ============================================================ */

.bicb-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0485A9;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.5px;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    transition: background-color 0.25s, gap 0.25s;
    white-space: nowrap;
}

.bicb-btn:hover {
    background-color: #036b8a;
    color: #FFFFFF;
    gap: 18px;
}

.bicb-btn-arrow {
    flex-shrink: 0;
    transition: transform 0.25s;
}

.bicb-btn:hover .bicb-btn-arrow {
    transform: translateX(5px);
}
