/*--------------------------------------------------------------------------*\
    Link in menu item
\*--------------------------------------------------------------------------*/

.header__menu-link {
    /*box*/
    display: block;
    margin: 0px auto;
    width: 100%;
    max-width: 350px;

    /*text*/
    text-align: center;
    font-size: var(--fs-tn);
    white-space: nowrap;

    /*transition*/
    -webkit-transition: background-color 0.3s, border-bottom-color 0.3s;
    transition: background-color 0.3s, border-bottom-color 0.3s;
}

/*--------------------------------------------------------------------------*\
        Is-active (common to all styles)
\*--------------------------------------------------------------------------*/

.header__menu-link.is-active {
    /*text*/
    font-weight: var(--fw-bold);
}