/* Header language selector under HOODEL logo */
.brand-stack{
  height:100%;
  display:flex;
  flex:0 0 auto;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
}

.brand-stack .logo{
  flex:0 0 auto;
}

.header-languages{
  direction:ltr;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  margin-top:-2px;
  font-family:"Manrope","Segoe UI",Arial,sans-serif;
  font-size:6.5px;
  line-height:1;
  font-weight:600;
  letter-spacing:.07em;
  white-space:nowrap;
}

.header-languages a{
  color:#7a899b;
  transition:color .15s ease;
}

.header-languages a:hover{
  color:#075fd8;
}

.header-languages strong{
  color:#075fd8;
  font-weight:750;
}

.header-languages i{
  color:#c3ccd6;
  font-style:normal;
}

@media(max-width:560px){
  .brand-stack{
    align-items:flex-start;
    gap:3px;
  }

  .header-languages{
    align-self:center;
    margin-top:-1px;
    font-size:6.3px;
    gap:5px;
  }
}


