/**
 * Promo banners — airtime-inspired mesh glass strip (landing only).
 * Images use object-fit: contain so full artwork (including text) is visible.
 */
.mm-promo-banners {
    --mm-promo-bg: #0b0e14;
    --mm-promo-mesh-blue: rgba(59, 130, 246, 0.15);
    --mm-promo-mesh-purple: rgba(139, 92, 246, 0.1);
    --mm-promo-mesh-pink: rgba(236, 72, 153, 0.05);
    --mm-promo-glass: rgba(255, 255, 255, 0.05);
    --mm-promo-border: rgba(255, 255, 255, 0.1);
    --mm-promo-radius: 18px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: var(--mm-promo-radius);
    border: 1px solid var(--mm-promo-border);
    background: var(--mm-promo-bg);
    padding: 1.1rem;
    margin: 0.5rem auto 0;
    max-width: min(1200px, 100%);
    width: 100%;
}

.mm-promo-banners__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 20%, var(--mm-promo-mesh-blue) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, var(--mm-promo-mesh-purple) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, var(--mm-promo-mesh-pink) 0%, transparent 70%),
        var(--mm-promo-bg);
}

.mm-promo-banners__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .mm-promo-banners__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.15rem;
    }
}

.mm-promo-banners__card {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--mm-promo-border);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 12px 28px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    line-height: 0;
    padding: 0.5rem;
    min-height: 0;
}

.mm-promo-banners__card:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 125, 49, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 16px 36px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(244, 125, 49, 0.15);
}

.mm-promo-banners__card--static {
    cursor: default;
}

.mm-promo-banners__card--static:hover {
    transform: none;
    border-color: var(--mm-promo-border);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 12px 28px rgba(0, 0, 0, 0.28);
}

.mm-promo-banners__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 768px) {
    .mm-promo-banners__img {
        max-height: 280px;
    }
}

@media (min-width: 1100px) {
    .mm-promo-banners__img {
        max-height: 320px;
    }
}

@media (max-width: 640px) {
    .mm-promo-banners {
        padding: 0.75rem;
        border-radius: 14px;
    }

    .mm-promo-banners__img {
        max-height: 180px;
    }
}
