/* Custom Header Layout - все элементы в одну строку */

.header-main-row {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    width: 100%;
    gap: 2rem;
}

/* Logo - слева */
.header-main-row > .grid-child:nth-child(1) {
    justify-self: start;
}

/* Menu - по центру */
.header-main-row > .grid-child:nth-child(2) {
    justify-self: center;
    display: flex;
    justify-content: center;
}

.header-main-row > .grid-child:nth-child(2) .mod-menu {
    display: flex;
    justify-content: center;
}

/* Languages - справа, минимальный размер */
.header-main-row > .grid-child:nth-child(3) {
    justify-self: end !important;
    width: max-content;
    margin-right: 0 !important;
    margin-left: auto !important;
}

/* Для мобильных устройств - вертикальное размещение */
@media (max-width: 767px) {
    .header-main-row {
        grid-template-columns: 1fr !important;
    }
    
    .header-main-row > .grid-child:nth-child(1),
    .header-main-row > .grid-child:nth-child(2),
    .header-main-row > .grid-child:nth-child(3) {
        justify-self: start;
        width: auto;
    }
}