.at-people {
    padding: 3em 0;
    background-color: #edebeb;
}

.at-people--noMarginTop {
    padding-top: 0;
}

.at-people--noMarginBottom {
    padding-bottom: 0;
}

.at-people--white {
    background-color: #fff;
}

.article .at-people__inner {
    margin-left: auto;
}

.at-people__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 0.7em 0;
    list-style: none;
}

.at-people__info {
    position: relative;
    display: inline-block;
    width: calc(50% - 1em);
    margin-bottom: 1em;
    padding-bottom: 2.5em;
    text-align: center;
}

.at-people__link {
    display: block;
}

.at-people__link:hover {
    text-decoration: none;
}

.at-people__photo {
    margin-bottom: 1.5em;
    border-radius: 50%;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
    transition: transform .5s ease-out, box-shadow .5s ease-out;
}

.at-people__link:hover .at-people__photo {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}

.at-people__name {
    font-size: 1.4em;
    color: #555555;
}

.at-people__function {
    display: block;
    font-size: 1em;
    color: #555555;
}

.at-people__link:hover .at-people__name,
.at-people__link:hover .at-people__function {
    color: #00a7eb;
}

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

.at-people__socialMediaItem {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0.2em;
    font-size: 1.8em;
    color: #7a8085;
}

.at-people__socialMediaItem:hover {
    text-decoration: none;
    color: #00a7eb;
}

.at-people__socialMediaItem::before {
    display: inline-block;
    width: 1em;
    margin-right: .2em;
    margin-left: .2em;
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.at-people__socialMediaItem--twitter::before {
    content: '\74';
}

.at-people__socialMediaItem--instagram::before {
    content: '\1f4f7';
}

.at-people__socialMediaItem--facebook::before {
    content: '\66';
}

@media (min-width: 680px) {
    .at-people__info {
        width: calc(20% - 1em);
    }
}

