/* -- Language switcher (GTranslate widget container) -------------------- */
/* GTranslate's dwf.js injects the widget's own styling; we only handle
   placement of the wrapper within the footer row. */
.lang-switch {
    display: inline-flex;
    align-items: center;

    .gtranslate_wrapper {
        display: inline-flex;
        align-items: center;
        line-height: 1;
    }

    /* GTranslate's injected stylesheet pins this wrapper with position:fixed
       (floating). Override it so the switcher stays inline in the footer. */
    .gt_switcher_wrapper {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
}
