/* ====== MAIN MENU ====== */
.main-menu {
    display: flex;
    align-items: center;
}

.main-menu__list {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}


.main-menu__link {
    color: #222322;
    font-family: "PT Astra Serif", serif;
    font-style: italic;
    font-weight: 700;
    /* ExtraBold Italic */
    font-size: 18px;
    line-height: var(--item-spacing-s, 24px);
    text-decoration: none;
    transition: color .2s ease;
}

/* Меню - наведение */
.main-menu__link:hover {
    color: #222322;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* Меню - активный пункт (текущая страница) */
.main-menu__link.active {
    color: #E61734;
    text-decoration: none;
}

/* Меню - при клике */
.main-menu__link:active {
    color: #E61734;
    text-decoration: none;
}