/* ---- Country labels (Google Maps style) ---- */
.country-label {
    background: transparent;
    border: none;
    box-shadow: none;
    pointer-events: none;
    /* центрируем подпись относительно якорной точки */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0 !important;
    height: 0 !important;
    overflow: visible;
}
.country-label span {
    white-space: nowrap;
    color: #fff;
    font-family: 'Roboto', 'Arial', sans-serif;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-shadow:
        -1px -1px 0 rgba(5, 10, 20, 0.9),
         1px -1px 0 rgba(5, 10, 20, 0.9),
        -1px  1px 0 rgba(5, 10, 20, 0.9),
         1px  1px 0 rgba(5, 10, 20, 0.9),
         0    0   4px rgba(5, 10, 20, 0.95);
    animation: country-label-in 0.25s ease-out;
}
@keyframes country-label-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* тиры по размеру страны */
.country-label--xl span { font-size: 15px; font-weight: 600; letter-spacing: 0.8px; }
.country-label--lg span { font-size: 13px; }
.country-label--md span { font-size: 12px; }
.country-label--sm span { font-size: 11px; opacity: 0.9; }
