.mcg-section {
    width: 100%;
    background: var(--mcg-bg, #100702);
    padding: 10px;
    box-sizing: border-box;
}

.mcg-grid {
    display: grid;
    grid-template-columns: repeat(var(--mcg-columns, 3), minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.mcg-card {
    position: relative;
    min-height: 102px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
        var(--mcg-card-bg, #140905);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    text-decoration: none !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.20);
    transform: translateY(0);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
    isolation: isolate;
}

.mcg-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02), var(--mcg-accent, #d94a00));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.36;
    pointer-events: none;
}

.mcg-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    width: 3px;
    height: 42px;
    border-radius: 50px;
    background: var(--mcg-accent, #d94a00);
    box-shadow: 0 0 22px var(--mcg-accent, #d94a00);
    opacity: 0.95;
    transition: height 0.28s ease, opacity 0.28s ease;
}

.mcg-glow {
    position: absolute;
    right: -70px;
    top: -70px;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: var(--mcg-accent, #d94a00);
    opacity: 0.07;
    filter: blur(4px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    z-index: -1;
}

.mcg-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--mcg-accent, #d94a00) 42%, transparent);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
}

.mcg-card:hover::after {
    height: 58px;
}

.mcg-card:hover .mcg-glow {
    opacity: 0.16;
    transform: scale(1.12);
}

.mcg-card-main {
    min-width: 0;
}

.mcg-card h3 {
    margin: 0 0 18px 0;
    color: #ffffff;
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.32;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mcg-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
}

.mcg-price {
    flex: 0 0 auto;
    margin-top: 1px;
    color: var(--mcg-accent, #d94a00);
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 0 18px color-mix(in srgb, var(--mcg-accent, #d94a00) 36%, transparent);
}

.mcg-empty {
    grid-column: 1 / -1;
    color: #ffffff;
    padding: 24px;
    border: 1px dashed rgba(255,255,255,0.20);
    border-radius: 14px;
}

@media (max-width: 1024px) {
    .mcg-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mcg-section {
        padding: 8px;
    }

    .mcg-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mcg-card {
        min-height: 96px;
        padding: 22px 22px;
        border-radius: 16px;
    }

    .mcg-card h3 {
        margin-bottom: 14px;
    }
}
