.container {
    font-family: "Public sans", sans-serif;
    padding-top: 100px;
    width: 90%;
    max-width: 56rem;
    margin: auto;
    list-style: none;
}
.link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
}
.next {
    margin: 3px 17px 0px 15px;
}
.category {
    position: relative;
    cursor: pointer;
}
.link:last-child .next {
    display: none;
}
.category::before {
    position: absolute;
    content: "";
    height: 1px;
    border-radius: 3px;
    width: 95%;
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%);
    background: #000;
    display: none;
}
.category:hover::before {
    display: block;
}

@media screen and (max-width: 650px) {
    .link {
        font-size: 12px;
    }
    .next {
        margin: 3px 12px 0px 10px;
    }
}
