.ba-mbl-bundled-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: 100%;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.ba-mbl-bundled-card__body {
    min-width: 0;
}

.ba-mbl-bundled-card__label {
    margin: 0 0 8px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.ba-mbl-bundled-card__title {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 26px;
    line-height: 1.2;
}

.ba-mbl-bundled-card__description {
    margin: 0 0 10px;
    color: #334155;
    font-size: 16px;
    line-height: 1.5;
}

.ba-mbl-bundled-card__note {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.ba-mbl-bundled-card__action {
    flex: 0 0 auto;
}

.ba-mbl-bundled-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 6px;
    background: #0f766e;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.ba-mbl-bundled-card__button:hover,
.ba-mbl-bundled-card__button:focus {
    background: #115e59;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 720px) {
    .ba-mbl-bundled-card {
        align-items: stretch;
        flex-direction: column;
    }

    .ba-mbl-bundled-card__button {
        width: 100%;
    }
}

