/* HAMBURGER DEFAULT */
.hamburger{
display:none;
flex-direction:column;
gap:4px;
background:none;
border:0;
cursor:pointer;
}

.hamburger span{
width:26px;
height:3px;
background:#333;
}

/* MOBILE */
@media(max-width:980px){

.vte-nav{
display:none;
}

/* ✅ ONLY HERE GRID */
.vte-container{
display:grid;
grid-template-columns:auto 1fr auto;
align-items:center;
}

/* positions */
.vte-left{
justify-self:start;
}

.center-auth{
justify-self:center;
}

.vte-right{
justify-self:end;
display:flex;
align-items:center;
}

/* hamburger */
.hamburger{
display:flex;
}

#vte-logo{
height:38px;
}

.btn-main{
padding:6px 12px;
font-size:13px;
white-space:nowrap;
}

}