/* ==========================================================================
   Language Switcher — PowerPipe Multilang (inline flags, top-right)
   ========================================================================== */

.ppml-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 1rem;
}

.ppml-switcher__link {
    display: flex;
    align-items: center;
    line-height: 0;
    transition: opacity 0.2s ease;
}

.ppml-switcher__link:hover {
    opacity: 0.7;
}

.ppml-switcher__flag {
    display: block;
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

/* Active language — hide, only show languages you can switch to */
.ppml-switcher__flag--active {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .ppml-switcher {
        top: 4px;
        right: 1rem;
        gap: 0.3rem;
    }

    .ppml-switcher__flag {
        width: 20px;
        height: 15px;
    }
}
