.bread {
    width: 100%;
    border-bottom: 1px solid var(--line-color);
}

.bread ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.125rem;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 10px;
}

.bread li:nth-child(n+2) {
    padding-left: 7px;
}

.bread li:nth-child(n+2):before {
    content: '/';
    color: white;
    padding-right: 4px;
}

.bread-link {
    color: white;
    text-decoration: none;
}

.bread a:hover {
    color: #f1e739;
}

@media screen and (max-width: 768px) {
    .bread ul {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 500px) {
    .bread ul {
        font-size: 0.875rem;
    }
}