.job-locations {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3em;
}
.job-locations .location {
    flex-basis: 30%;
    margin:0 0 1.5em;
}
.job-locations .location:nth-of-type(3n+2) {
    margin: 0 5% 1.5em;
}
.job-locations .location span {
    display: block;
}
.job-locations .location span a.button {
    font-size: 1.125rem;
    padding: 10px;
    display: block;
    text-align: center;
}
.job-locations .location span.small-text {
    font-size: 18px;
}
.job-locations .location span.button-wrapper {
    margin-top: 10px;
}
/*.job-locations .location a {
    background: #f1f1f1;
    display: block;
    height: 100%;
    width:100%;
    text-align: center;
    border-radius: 15px;
    padding: 10px 5px;
    border: 1px solid #707070;
}
.job-locations .location a:hover,
.job-locations .location a:focus {
    background: var(--green);
    color: #FFF;
}*/

@media screen and (max-width: 900px){
    .job-locations .location {
        flex-basis: 47%;
    }
}
@media screen and (max-width: 600px){
    .job-locations {
        display: block;
    }
}