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

.WorkerList__item {
    display: inline-block;
    width: 100%;
    margin-bottom: 1em;
    vertical-align: top;
    *display: inline;
    zoom: 1;
}

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

.WorkerList__link:hover {
    text-decoration: none;
    border-color: #7e459a;
    background-color: #fff;
}

.WorkerList__image {
    float: left;
    width: 100px;
    height: 100px;
    margin: 0 1em 0 0;
    background-color: #ccc;
}

.WorkerList__image--fallback {
    text-indent: -999em;
    background-image: url(img/fallback-worker.png);
}

.WorkerList__title {
    margin-bottom: 5px;
    color: #ff6b00;
    word-wrap: break-word;
    transition: .2s color ease-out;
}

.WorkerList__link:hover .WorkerList__title {
    color: #7e459a;
}

.WorkerList__function {
    display: block;
    margin-left: 115px;
    font-size: .9em;
    color: #999;
}

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

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

@media (min-width: 1024px) {
    .WorkerList__item {
        width: 31%;
        margin-right: 2%;
    }

    .WorkerList__item:nth-child(2n + 2) {
        margin-right: 2%;
    }

    .WorkerList__item:nth-child(3n + 3) {
        margin-right: 0;
    }

    .WorkerList__function {
        font-size: .8em;
    }
}