.relationItem {
    position: relative;
    max-width: 35em;
    margin-bottom: 2em;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    border-radius: 5px;
}

.relationItem__photo {
    position: absolute;
    width: 40%;
    height: 100%;
    overflow: hidden;
    background: #f2f2f2 no-repeat center center;
    background-size: cover;
}

.relationInfo__content {
    width: calc(60% - 2em);
    margin: 2em 2em 2em 40%;
    padding-left: 2em;
    overflow: hidden;
}

.relationInfo__function {
    font-size: .9em;
    opacity: .8;
}

.relationInfo__email,
.relationInfo__phone {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.relationInfo__email:before,
.relationInfo__phone:before {
    margin-right: .5em;
}

.relationInfo__email + .relationInfo__phone {
    margin-top: .5em;
}

@media (min-width: 568px) {
    .relation-list {
        display: flex;
        flex-wrap: wrap;
    }

    .relation-list li {
        width: calc(50% - 1em);
        margin-right: 2em;
    }

    .relation-list li:nth-child(even) {
        margin-right: 0;
    }
}