/* Header language switcher */
.pjfml-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 2.25rem;
}
.pjfml-current {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .5rem;
    min-height: 44px;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, .85);
    font: inherit;
    font-size: 12px;
    letter-spacing: .14em;
    border-radius: 4px;
    cursor: pointer;
    transition: color .2s;
}
.pjfml-current:hover, .pjfml-current:focus-visible {
    color: #FBBF24;
    outline: none;
}
.pjfml-flag {
    width: 22px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.pjfml-flag--text {
    width: 22px; height: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 9px; letter-spacing: .04em;
    background: #2a2f31; color: #FBBF24; border-radius: 2px;
}
.pjfml-chev { font-size: 16px !important; line-height: 1 !important; }
.pjfml-menu {
    position: absolute;
    right: 0; top: 100%; margin-top: 6px;
    min-width: 180px;
    list-style: none; padding: .35rem; margin: 0;
    background: #15191b;
    border: 1px solid rgba(245, 197, 24, .2);
    border-radius: 6px;
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
    z-index: 60;
}
.pjfml-menu li a {
    display: flex; align-items: center; gap: .55rem;
    padding: .55rem .65rem;
    min-height: 44px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    transition: background-color .15s, color .15s;
}
.pjfml-menu li a:hover, .pjfml-menu li a:focus-visible {
    color: #FBBF24;
    background: rgba(245, 197, 24, .08);
    outline: none;
}
@media (max-width: 1024px) {
    .pjfml-switcher { margin-left: 1.25rem; }
}
@media (max-width: 768px) {
    .pjfml-switcher { margin-left: .5rem; }
}
