#team {}
#team > .content-wrapper { text-align: center; }

/*--------------------------------------------------------------------------------*/

#team > .content-wrapper > .hook {
    margin-bottom: 15px;
    
    font-weight: 700;
    font-style: italic;
}
#team > .content-wrapper > .hook > span { font-weight: 100; }
#team > .content-wrapper > .title {
    max-width: 400px;
    margin: 0 auto 50px;
    
    line-height: 130%;
    font-weight: 700;
}
#team > .content-wrapper > .title > span { font-weight: 100; }
@media (min-width: 1100px)    { #team > .content-wrapper > .title { font-size: 35px; } }
@media (max-width: 1099.99px) { #team > .content-wrapper > .title { font-size: 30px; } }

/*--------------------------------------------------------------------------------*/

#team > .content-wrapper > .members {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    column-gap: 30px;
    row-gap: 50px;
    filter: drop-shadow(0 0 1.5px rgba(0,0,0,.2));
}
@media (min-width: 1200px)                           { #team > .content-wrapper > .members > * { flex: 0 0 calc((100% - 90px) / 4); } }
@media (max-width: 1199.99px) and (min-width: 900px) { #team > .content-wrapper > .members > * { flex: 0 0 calc((100% - 60px) / 3); } }
@media (max-width:  899.99px) and (min-width: 650px) { #team > .content-wrapper > .members > * { flex: 0 0 calc((100% - 30px) / 2); } }
@media (max-width:  649.99px)                        { #team > .content-wrapper > .members > * { flex: 0 0 100%; } }
#team > .content-wrapper > .members > .hook {
    order: -1;
    position: relative;
    overflow: hidden;
}
#team > .content-wrapper > .members > .hook:before {
    content: '';
    display: block;
    padding-top: 145%;
}
#team > .content-wrapper > .members > .hook > .cta-link {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    display: flex; height: 100%; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
    padding: 50px 30px;
    
    background-color: var(--main-color);
    
    text-align: center;
    font-size: 16px;
    color: #000;
}
#team > .content-wrapper > .members > .hook > .cta-link > .title {
    text-decoration: underline;
    font-size: 25px;
}

/*--------------------------------------------------------------------------------*/

#team > .content-wrapper > .cta-wrapper {}
@media (min-width: 900px)    { #team > .content-wrapper > .cta-wrapper { margin-top: 100px; } }
@media (max-width: 899.99px) { #team > .content-wrapper > .cta-wrapper { margin-top:  50px; } }
#team > .content-wrapper > .cta-wrapper > .cta-link {
    font-weight: 700;
    cursor: pointer;
}