.ml-geo-block {
    margin: 20px 0;
}
.ml-geo-title {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin: 0 0 10px;
}
.ml-geo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ── Base link button ── */
.ml-geo-link {
    display: inline-block;
    padding: 7px 13px;
    border: 1px solid #05a589;
    border-radius: 6px;
    background: #fff;
    color: #05a589;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}
.ml-geo-link:hover {
    background: #05a589;
    color: #fff;
}
.ml-geo-link:hover .ml-geo-dist {
    color: rgba(255,255,255,0.8);
}
.ml-geo-link:hover .ml-geo-icon {
    filter: brightness(0) invert(1);
}

/* ── Inner layout: icon + text ── */
.ml-geo-link-inner {
    display: flex;
    align-items: center;
    gap: 7px;
}
.ml-geo-icon {
    width: 14px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}
.ml-geo-link-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.ml-geo-link-name {
    line-height: 1.3;
}
.ml-geo-dist {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    line-height: 1.2;
    margin-top: 1px;
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .ml-geo-link {
        font-size: 13px;
        padding: 6px 10px;
    }
    .ml-geo-dist {
        font-size: 10px;
    }
}
