.locations-list{
    margin: 1% 0 0 0;
    list-style-type:none;
    padding-left: 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    grid-row: 3/4;
    grid-column: 1/6;
    justify-content: center;
    height: fit-content;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    flex-wrap: wrap;
    color: var(--primary-text-on-dark-color)
}
.locations-list li::after{
    content:"•";
    margin: 1rem;
}
.locations-list li:last-child::after{
    content:"";
    margin: 1rem;
}
@media (min-width: 600px) {
    .locations-list{
        grid-row: 4/5;
    }
}