.OfficeList {
    margin: 0;
    padding: 0;
    list-style: none;
}

.OfficeList__item {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    *display: inline;
    zoom: 1;
}

.OfficeList__link {
    display: block;
    padding: .5em;
    border: 1px solid transparent;
    text-decoration: none;
    transition: .2s border ease-out;
}

.OfficeList__link:hover {
    text-decoration: none;
    border-color: #7e459a;
}

.OfficeList__image {
    float: left;
    margin: 0 1em 0 0;
}

.OfficeList__title {
    margin-bottom: 5px;
    color: #ff6b00;
}

.OfficeList__link:hover .OfficeList__title {
    color: #7e459a;
}

.OfficeList__city {
    font-size: .9em;
    color: #999;
}

@media (min-width: 500px) {
    .OfficeList__item {
        width: 48%;
        margin-right: 2%;
    }

    .OfficeList__item:nth-child(2n + 2) {
        margin-right: 0;
    }
}