.mbm-geo-summary {
    --mbm-geo-summary-bg: #f7fbff;
    --mbm-geo-summary-border: rgba(17, 145, 238, 0.16);
    --mbm-geo-summary-title: #4b5050;
    --mbm-geo-summary-text: #5b6466;
    --mbm-geo-summary-accent: #1191ee;
    background:
        radial-gradient(circle at top left, rgba(17, 145, 238, 0.12), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 251, 0.88)),
        var(--mbm-geo-summary-bg);
    border: 1px solid var(--mbm-geo-summary-border);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(75, 80, 80, 0.08);
    margin: 28px 0 34px;
    padding: clamp(22px, 3vw, 34px);
}

.mbm-geo-summary__title {
    color: var(--mbm-geo-summary-title);
    font-size: clamp(1.24rem, 1.7vw, 1.65rem);
    line-height: 1.18;
    margin: 0 0 10px;
}

.mbm-geo-summary__intro {
    color: var(--mbm-geo-summary-text);
    font-size: 1.02rem;
    line-height: 1.55;
    margin: 0 0 18px;
}

.mbm-geo-summary__list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mbm-geo-summary__item {
    align-items: flex-start;
    color: var(--mbm-geo-summary-text);
    display: grid;
    gap: 10px;
    grid-template-columns: 22px 1fr;
    line-height: 1.45;
}

.mbm-geo-summary__item::before {
    align-items: center;
    background: linear-gradient(135deg, var(--mbm-geo-summary-accent), #e029cc);
    border-radius: 999px;
    color: #fff;
    content: "✓";
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    height: 18px;
    justify-content: center;
    line-height: 1;
    margin-top: 0.2em;
    width: 18px;
}

.mbm-geo-summary--empty {
    color: #7a8080;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .mbm-geo-summary {
        border-radius: 18px;
        margin: 22px 0 28px;
    }
}
