.mpc-combo-card-banner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    margin-top: 9px;
    padding: 7px 10px;
    color: #111;
    background: linear-gradient(135deg, #fffaf0 0%, #f4e6bb 100%);
    border: 1px solid rgba(201, 168, 76, 0.55);
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.25;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mpc-combo-card-banner span {
    flex: 0 0 auto;
    color: #8d7020;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mpc-combo-card-banner strong {
    min-width: 0;
    color: #111;
    font-size: 12px;
    font-weight: 600;
}

.mpc-combo-card-banner:hover {
    color: #fff;
    background: #111;
    border-color: rgb(201, 168, 76);
}

.mpc-combo-card-banner:hover span,
.mpc-combo-card-banner:hover strong {
    color: #fff;
}

.mpc-combo-single-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 14px 0 20px;
    padding: 14px 16px;
    color: #111;
    background:
        linear-gradient(90deg, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0.04)),
        #fff;
    border: 1px solid rgba(201, 168, 76, 0.6);
    border-left: 4px solid rgb(201, 168, 76);
    border-radius: 8px;
}

.mpc-combo-single-copy {
    min-width: 0;
}

.mpc-combo-single-copy span {
    display: block;
    margin-bottom: 3px;
    color: #8d7020;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.mpc-combo-single-copy strong {
    display: block;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.mpc-combo-single-link {
    flex: 0 0 auto;
    padding: 10px 15px;
    color: #fff;
    background: #111;
    border: 1px solid #111;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mpc-combo-single-link:hover {
    color: #fff;
    background: rgb(201, 168, 76);
    border-color: rgb(201, 168, 76);
}

@media (max-width: 767px) {
    .mpc-combo-card-banner {
        display: flex;
        flex-wrap: wrap;
    }

    .mpc-combo-single-banner {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .mpc-combo-single-link {
        width: 100%;
        text-align: center;
    }
}
