.bl-language-switcher {
            width: min(100% - 32px, 1180px);
            margin: 28px auto 18px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            font-family: Manrope, Arial, sans-serif;
        }
        .bl-language-title {
            color: #59637a;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }
        .bl-language-options {
            display: inline-flex;
            align-items: center;
            gap: 9px;
        }
        .bl-language-flag {
            min-width: 70px;
            min-height: 46px;
            padding: 7px 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #1a2341;
            background: #fff;
            border: 1px solid #dfe3ed;
            border-radius: 12px;
            box-shadow: 0 5px 16px rgba(20, 27, 58, .08);
            font-size: 12px;
            font-weight: 900;
            line-height: 1;
            text-decoration: none;
            transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
        }
        a.bl-language-flag:hover,
        a.bl-language-flag:focus {
            color: #1a2341;
            border-color: #7458e4;
            box-shadow: 0 8px 22px rgba(70, 45, 170, .14);
            transform: translateY(-2px);
            outline: none;
        }
        .bl-language-flag.is-current {
            background: #f2f3f8;
            border-color: #c8cedb;
            box-shadow: none;
            cursor: default;
        }
        .bl-language-flag svg {
            width: 30px;
            height: 20px;
            display: block;
            flex: 0 0 30px;
            overflow: hidden;
            border-radius: 3px;
            box-shadow: 0 0 0 1px rgba(0, 0, 0, .12);
        }
        @media (max-width: 560px) {
            .bl-language-switcher {
                margin-bottom: 86px;
                padding-inline: 10px;
            }
            .bl-language-title {
                display: none;
            }
        }
