.footer-region-bar {
    width: 100%;
    padding-bottom: 28px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section .region-switcher {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 16px;
}

.footer-section .region-switcher-label {
    color: var(--dark-text-color);
    font-family: var(--font-dmsans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.footer-section .region-switcher-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section .region-switcher-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white-color);
    font-family: var(--font-dmsans);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: border-color 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.footer-section .region-switcher-list a:hover {
    border-color: var(--primary-color3);
    background-color: rgba(89, 86, 233, 0.18);
    color: var(--white-color);
}

.footer-section .region-switcher-list a[aria-current="page"] {
    border-color: var(--primary-color3);
    background-color: var(--primary-color3);
    color: var(--white-color);
}

@media (max-width: 576px) {
    .footer-region-bar {
        padding-bottom: 22px;
        margin-bottom: 16px;
    }

    .footer-section .region-switcher {
        flex-direction: column;
        gap: 14px;
    }

    .footer-section .region-switcher-list {
        gap: 8px;
    }

    .footer-section .region-switcher-list a {
        min-height: 36px;
        padding: 7px 16px;
        font-size: 13px;
    }
}
