@media screen and (min-width: 600px) {
    .relationList {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.relationList__image {
    width: 20vw;
    height: 20vw;
    max-width: 130px;
    max-height: 130px;
    margin: 0 auto 2em;
    overflow: hidden;
    border-radius: 50%;
    background-color: #f2f2f2;
}

.relationList__image img {
    width: 100%;
}

@media screen and (min-width: 600px) {
    .relationList__image {
        margin: 0 2em 0 0;
    }
}

.relationList__heading {
    width: 100%;
    margin: 0 0 .3em 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.4em;
    color: #c40d58;
}

.relationList__text {
    text-align: center;
}

@media screen and (min-width: 600px) {
    .relationList__text {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        min-width: 0;
        text-align: left;
    }
}

.relationList__data {
    margin: 0;
    text-overflow: ellipsis;
}

.relationList__data:first-of-type {
    margin-top: 1em;
}

.relationList__data a {
    position: relative;
    padding-left: 1.5em;
    display: inline-block;
    white-space: nowrap;
}

.relationList__data--email a {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.relationList__data a::after{
    position: absolute;
    top: -2px;
    left: 0;
    content: '\e802';
    font-family: 'icons';
    display: inline-block;
}

.relationList__data--phone a::after {
    content: '\1f4f1';
}

.relationList__data--email a::after {
    content: '\2709';
    font-size: .8em;
    line-height: 2.2;
}

.relationList__data--twitter a::after {
    content: '\74';
    font-size: 1.3em;
}

.relationList__data--linkedin a::after {
    content: '\6c';
    font-size: 1.3em;
}

.relation-list a {
    color: #575757;
}
