* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= HEADER ================= */
.header_sol {
    position: relative;
    min-height: 150px;
    background: 
        radial-gradient(
            ellipse 300px 100px at calc(50% + 100px) calc(50% - 20px),
            #D73015 0%,
            rgba(215,48,21,0.7) 40%,
            transparent 100%
        ),
        linear-gradient(90deg, #A92610, #510D00);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.login_block{
position: absolute;
top:10px;
left:254px;
right:10px;
#width: calc(100% - 254px);
text-align: center;
#color: #DAB95C !important;
#font-size: 14pt;
#text-decoration: none !important;
#border:solid 1px #8A3CA4;
}

/* ================= LOGO ================= */
.logo_img {
    width: 254px;
    height: 150px;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 254px;
}

/* Иконки авторизации в хедере */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.auth-icon {
    color: #DAB95C;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;    
    transition: color 0.3s;
}
.auth-icon:hover,
.auth-icon:hover .auth-text {
    color: #FFD7A3;
}
.auth-icon-symbol {
    color: inherit;
    transition: filter 0.3s;
}
.auth-icon:hover .auth-icon-symbol {
    filter: sepia(1) saturate(10000%) hue-rotate(300deg);
}
.auth-text {
    font-size: 13px;
    font-weight: normal;
	color: #DAB95C;
	text-decoration: none !important;
}

/* ================= MENU CONTAINER ================= */
.menu-container_items {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
    padding-top: 50px;
    min-width: 0;
	width: calc(100% - 254px);
	gap: clamp(10px, 3vw, 50px);
	justify-content: space-between;
}

/* ================= MENU LINKS ================= */
.menu-link_item {
    display: inline-block;
    color: #DAB95C !important;
    font-size: 14pt;
    text-decoration: none !important;
    white-space: nowrap;
}

.menu-link_item:hover {
    color: #FFD7A3 !important;
}

/* ================= MENU ICON ================= */
.menu-icon_item {
    display: inline-block;
    color: #DAB95C !important;
    font-size: 15pt;
    text-decoration: none !important;
    white-space: nowrap;
}

.menu-icon_item:hover {
    color: #FFD7A3 !important;
}


@media (max-width: 899px) and (min-width: 401px) {
    .menu-container_items {
        justify-content: center;
        gap: 20px;
	padding: 0 20px;
    padding-top: 50px;
    }
}


/* ================= MOBILE: MENU UNDER LOGO ================= */
@media (max-width: 400px) {
    .header_sol {
        flex-direction: column;
        align-items: center;
    }
    
    .logo_img {
        width: 254px !important;
        height: 150px !important;
        flex: 0 0 auto !important;
    }
    
    .menu-container_items {
        width: 100%;
        flex: none;
        justify-content: center;
        gap: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}