.at-mission__article {
    position: relative;
    margin-bottom: 1em;
    padding: 1.5em .6em .6em .6em;
    text-align: center;
    vertical-align: middle;
    border-radius: 8px;
    background: rgba(98, 236, 188, 0.2);
    transition: background ease-in-out .25s;
}

.at-articlePickerWithBackground .at-mission__article {
    background: #fff;
}

.at-mission__imageContainer {
    display: block;
    width: 55px;
    height: 55px;
    margin: 0 auto 1em auto;
    background: center center no-repeat;
}

.at-mission__text {
    font-size: .8em;
    font-weight: 600;
}

.at-mission__url {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.at-mission__article--withUrl:hover {
    background: rgba(98, 236, 188, 0.5);
    transition: background ease-in-out .25s;
}

.at-articlePickerWithBackground .at-mission__article--withUrl:hover {
    background: rgba(98, 236, 188, 0.2);
    transition: background ease-in-out .25s;
}

@media (min-width: 500px) {
    .at-mission__sectionsContainer {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .at-mission__article {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - .6em);
        flex: 0 1 calc(50% - .6em);
        width: calc(50% - .6em);
    }
}

@media (min-width: 768px) {
    .at-mission__article {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(25% - .8em);
        flex: 0 1 calc(25% - .8em);
        width: calc(25% - .8em);
    }
}