.team-grid__item {
    display: flex;
    padding: 2rem;
    align-items: flex-start;
    position: relative;
}
.team-grid__item:before {
    content: "";
    display: block;
    background: transparent url('https://canadabostonconnect.com/wp-content/themes/neve-child/img/flourish--image.png') no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    width: 80%;
    height: 80%;
    transform: translate(0, -4%);
}

@media screen and (min-width: 100em) {
     .team-grid__item:before {
         transform: translate(0%, -6%);
    }
}

.team-grid__item-name {
    margin: 0;
    color: #be1a21;
}
.team-grid__item-image-wrapper {
    max-width: 60%;
    margin: 0 auto;
    border: 3px solid #be1a21;
    padding: 0.5rem;
    border-radius: 100%;
    position: relative;
    background: white;
    z-index: 10;
    flex: 0 0 33.33333%;
}

.team-grid__item-image {
    border-radius: 100%;
    display: block;
}
.team-grid__item-details {
    padding-top: 0;
    text-align: left;
    padding-left: 1.5rem;
    text-align: left;
    position: relative;
    flex: 0 0 66.66667%;
}
.team-grid__item-title {
     margin: 0;
}
.team-grid__item-social {
    margin: 1.5rem 0 0;
    padding: 1.5rem 0 0;
    position: relative;
    border-top: 0;
}
.team-grid__item-social:before {
    position: absolute;
    top: 0;
    left: -10%;
    width: 100%;
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg,#be1a21,rgba(190,26,33,0));
}