.CandidateList {
    margin-left: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 1em;
}

.CandidateListItem {
    position: relative;
    padding-bottom: 2em;
    background: #A8C730;
}

.CandidateListItem__title {
    display: table-cell;
    vertical-align: top;
    height: 2.55em;
}

.CandidateListItem__description {
    padding: 1em;
    color: #fff;
    background: url(votebackground.svg) no-repeat 100% 0;
    background-size: 30%;
}

.CandidateListItem__location,
.CandidateListItem__location:hover {
    color: #fff;
    text-decoration: none;
}

.CandidateListItem__imageContainer {
    position: relative;
    height: 0;
    padding-bottom: 75%;
    background-color: #90af18;
}

.CandidateListItem__image {
    position: absolute;
    display: block;
    width: 100%;
}

.CandidateListItem__meta,
.CandidateListItem__meta:before {
    display: block;
    margin-bottom: .5em;
}

.CandidateListItem__meta:before {
    speak: none;
    content: "";
    width: 3em;
    border-top: .25em solid rgba(255,255,255,0.2);
}

.CandidateListItem__button {
    margin-left: 1em;
    padding: .5em 1em .3em;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    line-height: 1em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "FreightTextProBold-Regular", Arial, sans-serif;
    font-size: .8em;
    transition: all .2s;
    cursor: pointer;
}

.CandidateListItem__button:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.1);

}

.CandidateListItem__button--vote {
    background: #983222;
}

.CandidateListItem__button--vote:hover {
    background: #f17f00;
}