.gpl-team-row{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    background-color: #f8f9fa;
    border-radius: 2px;
    position: relative;
}

.contact-top-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #e9ecef;
    cursor: pointer;
    transition: all .2s ease-in;
}
.contact-top-wrapper:hover{
    background-color: #ced4da;
}
.contact-top-wrapper:hover + .moreBtn{
    background-color: #F2A300;
    color: #fff;
}

.gpl-team-portrait{
    width: 250px;
    height: 160px;
    object-fit: cover;
}
.team-header-text{
    padding: 15px;
}

.team-name{
    font-size: 26px;
}
.contact-title{
    font-size: 20px;
}

.team-bottom-wrapper{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 5%;
}
.furtherInfos{
    width: 100%;
    display: none;
}

.team-descr{
    max-width: 60ch;
    margin: 20px 0 10px;
}
.gpl-team-contact{
    width: 90%;
    border-top: 2px solid #e9ecef;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 15px 0 10px 0;
}


.team-name{
    padding: 0 0 3px 0;
}

.team-info-container{
    margin-bottom: 15px;
    font-size: 16px;
    margin-top: 12px;
}
.team-info-container h3{
    font-weight: bold;
    margin: 0;
    padding: 0 0 5px 0;
}

.team-info-container h3, .team-info-container p{
    font-size: 16px;
}

.team-contact-link{
    color: #F2A300;
    background-color: #fff;
    padding: 6px 12px;
    border: 1px solid #F2A300;
    transition: all .2s ease-in;
    margin: 5px 15px 10px 0;
}
.team-contact-link:hover{
    background-color: #F2A300;
    color: #fff;
}

.moreBtn{
    position: absolute;
    top: 20px;
    right: 0px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 100%;
    border: none;
    margin: 0 20px;
    background-color: #fff;
    color: #495057;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all .2s ease-in;
    pointer-events: none;
}

@media(max-width: 980px){
    .contact-top-wrapper{
        flex-direction: column;
        align-items: flex-start;
    }
    .gpl-team-portrait{
        margin: 18px 0 0 4px;
    }
    .team-header-text { padding: 15px 0 15px 4px; }
}




