.at-contactInfo__item {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    width: 100%;
    max-width: 35rem;
    padding: 1rem 1.5rem;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 -5px 0 #016093;
    background-color: #e6f4fb;
    overflow: hidden;
    z-index: 1;
}

.at-contactInfo__item::before,
.at-contactInfo__item::after {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: #bed7e4;
    content: '';
    z-index: -1;
}

.at-contactInfo__item::before {
    top: .5rem;
    left: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
}

.at-contactInfo__item::after {
    top: 4rem;
    left: .5rem;
    width: 1.2rem;
    height: 1.2rem;
}

.at-contactInfo__textWrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(100% - 100px);
    padding-top: .5rem;
    font-size: .9rem;
    word-break: break-word;
}

.at-contactInfo__name {
    margin: 0 0 0.5rem 0;
}

.at-contactInfo__function {
    display: block;
    margin-bottom: .5rem;
}

.at-contactInfo__email {
    color: inherit;
}

.at-contactInfo__email::before {
    display: inline-block;
    margin-right: .5rem;
    content: '\2709';
    font-family: "fjell", sans-serif;
}

.at-contactInfo__imageWrapper {
    flex: 0 0 100px;
}

.at-contactInfo__image {
    border-radius: 50% !important;
    background-color: #bed7e4;
    box-shadow: 0 3px 0 #016093;
}

.at-contactInfo__linkWrapper {
    margin-top: auto;
}

.at-contactInfo__link {
    display: block;
    padding-top: 1rem;
}

.at-contactInfo__link::after {
    display: inline-block;
    vertical-align: middle;
    margin-left: .5rem;
}

.at-contactInfo__link,
.at-contactInfo__link:hover::after {
    text-decoration: none;
}

@media (min-width: 450px) {
    .at-contactInfo__item {
        flex-direction: row-reverse;
        gap: 1.5rem;
        text-align: left;
    }

    .at-contactInfo__imageWrapper {
        padding-bottom: 2.4rem;
    }

    .at-contactInfo__linkWrapper {
        text-align: right;
    }

    .at-contactInfo__item::before {
        top: auto;
        bottom: 1.2rem;
        left: 1rem;
    }

     .at-contactInfo__item::after {
        top: auto;
        bottom: .8rem;
        left: 5rem;
        width: 1.2rem;
        height: 1.2rem;
    }
}

/*
* contactInfo in at-articleContainer
 */

.at-articleContainer .at-contactInfo,
.at-articleContainer .at-contactInfo__item,
.at-articleContainer .at-contactInfo__textWrapper,
.at-articleContainer .at-contactInfo__inner {
    height: 100%;
}

.at-articleContainer .at-contactInfo__item {
    flex-direction: column-reverse;
    align-items: center;
    max-width: none;
    text-align: center;
}

.at-articleContainer .at-contactInfo__item::before {
    top: .5rem;
    left: 1.5rem;
}

.at-articleContainer .at-contactInfo__item::after {
    top: 4rem;
    left: .5rem;
}

.at-articleContainer .at-contactInfo__title {
    display: none;
}

.at-articleContainer .at-contactInfo__linkWrapper {
    text-align: center;
}

@media (min-width: 450px) and (max-width: 767px) {
    .at-articleContainer .at-contactInfo__imageWrapper {
        padding-bottom: 0;
    }
}

@media (min-width: 768px) {
    .at-articleContainer .at-contactInfo__item {
        flex-direction: row-reverse;
        align-items: flex-start;
        text-align: left;
    }

    .at-articleContainer .at-contactInfo__item::before {
        top: auto;
        bottom: 1.2rem;
        left: 1rem;
    }

    .at-articleContainer .at-contactInfo__item::after {
        top: auto;
        bottom: .8rem;
        left: 5rem;
    }

    .at-articleContainer .at-contactInfo__linkWrapper {
        text-align: right;
    }
}
