article.type-team { cursor: pointer; }
.team-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}
.team-popup.is-active { display: block; }
.team-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 35, 0.68);
}
.team-popup__modal {
    position: relative;
    /* width: min(92vw, 980px); */
    /* width: min(92vw, var(--site-content-width)); */
    width: 1000px;
    margin: 7vh auto;
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    z-index: 2;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.20);
}
.team-popup__close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 50%;
    background: #171b3a;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    cursor: pointer;
    padding: 0;
    z-index: 1;

    display: flex;
    justify-content: center;
    align-items: center;
}
.team-popup__close::before {
    content: '\f00d';
    font-family: 'fontawesome';
    pointer-events: none;
}
.team-popup__content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}
.team-popup__image-wrap {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.20);
}
.team-popup__image {
    display: block;
    width: 100%;
    /* height: auto; */
}
.team-popup__name {
    font-size: 52px !important;
    text-transform: none;
}
.team-popup__function {
    font-size: 20px;
    color: #696969;
    margin-top: 8px;
}
.team-popup__description {
    font-size: 15px;
    color: #171b3a;
    margin-top: 42px;
    line-height: 1.65;
    max-width: 520px;
}
.team-popup__description p:last-child { margin-bottom: 0; }
.team-popup__socials {
    display: flex;
    gap: 10px;
    margin-top: 34px;
}
.team-popup__socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-content-pcp-living);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}
.team-popup__socials .visually-hidden { display: none !important; }
.team-popup__investment-logo {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
    display: none;
}

@media (max-width: 767px) {
    .team-popup__modal {
        margin: 30px auto;
        padding: 28px;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    .team-popup__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .team-popup__investment-logo {
        position: static;
        margin-top: 25px;
    }
}