/**
 * MA Mastercard First-Order Gate — inline notice + switch-link styling.
 * Works for both classic checkout (.ma-mc-notice as an <li> inside
 * ul.wc_payment_methods) and Blocks checkout (.ma-mc-notice as a <div>).
 */
.ma-mc-notice {
    margin: 12px 0;
    padding: 12px 16px;
    border-left: 4px solid #cc1818;
    background: #fbeaea;
    color: #5b1414;
    font-size: 14px;
    line-height: 1.45;
    border-radius: 4px;
    box-sizing: border-box;
    list-style: none;
}

/* Switch-link that replaces Place Order when a Mastercard PAN is detected. */
.ma-mc-switch-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.ma-mc-switch-link:hover,
.ma-mc-switch-link:focus {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .ma-mc-notice {
        font-size: 13px;
        padding: 10px 12px;
    }
}
