.curated-nav-cont {
    margin-bottom: 20px;
}

.curated-nav-cont .curated-nav-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1.5;
    letter-spacing: -0.083rem;
    text-transform: uppercase;
}

.curated-nav-cont .curated-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 25px;
}

.curated-nav-cont .nav-item,
.curated-nav-cont .nav-item a {
    font-family: var(--font-frutiger-bold);
    font-weight: var(--font-weight-normal);
    color: var(--white);
    font-size: 0.875rem;
    line-height: 1.86;
    position: relative;
}

.panel-header.riverwalk .curated-nav-cont .nav-item,
.panel-header.riverwalk .curated-nav-cont .nav-item a {
    font-family: var(--font-forma);
}

.curated-nav-cont .nav-item:before {
    content: '';
    position: absolute;
    right: -12.5px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 2px;
    height: 12px;
    background-color: var(--white);
}

@media(hover:hover) {
    .curated-nav-cont .nav-item a:hover {
        text-decoration: none;
    }
}

@media(min-width:64em) {
    .curated-nav-cont .curated-nav-links {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .curated-nav-cont .curated-nav-title {
        font-size: 1.625rem;
        line-height: 1.39;
        letter-spacing: -0.089rem;
        text-align: left;
        margin-bottom: 5px;
    }

    .curated-nav-cont .nav-item,
    .curated-nav-cont .nav-item a {
        font-size: 1rem;
        line-height: 2.25;
    }

    .curated-nav-cont .nav-item:before {
        display: none;
    }
}