/* Custom Polylang Language Switcher Styles */

.language-switcher-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    align-items: center;
    justify-content: center;
    margin: 0.5rem;
}

.language-switcher-flex-container .lang-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
}
.language-switcher-flex-container .lang-link img {
    width: 5rem;
}

.language-switcher-flex-container .lang-link.current-lang {
    font-weight: bold;
    box-shadow: 0 2px 0 currentColor;
}

.language-switcher-flex-container .lang-link:not(.current-lang):hover {
    opacity: 0.7;
}