.p-about-team-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.p-about-team-holder {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.p-about-team-member-image {
    width: 100%;
    heighT: 350px;
}

.p-about-team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-about-team-title-and-position span {
    display: block;
}

.p-about-team-member-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
}

.p-about-team-member-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.p-about-team-cta {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.p-about-team-cta p {
    margin-top: 10px;
    margin-bottom: 20px;
}

@media only screen and (min-width:992px) {


    .p-about-team-title-wrapper {
        gap: 25px;
        width: 50%;
    }

    .p-about-team-holder {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 100px;
        margin-top: 80px;
    }

    .p-about-team-member {
        width: calc(50% - 50px);
    }

    .p-about-team-member-image {
        height: 700px;
    }

    .p-about-team-cta {
        width: 50%;
        margin-top: 80px;
    }

    .p-about-team-cta p {
        margin-top: 16px;
        margin-bottom: 24px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .p-about-team-holder {
        gap: 30px;

        row-gap: 50px;
    }

    .p-about-team-member-image {
        height: 400px;
    }

    .p-about-team-member-content p {
        width: 90%;
        min-height: 55px;
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .p-about-team-member-image {
        height: 470px;
    }
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .p-about-team-member-image {
        height: 520px;
    }
}

@media only screen and (min-width:1600px) and (max-width:1799px) {
    .p-about-team-member-image {
        height: 630px;
    }
}

@media only screen and (hover:hover) {

    .p-about-team-member-links a svg path {
        transition: fill var(--timing-function);
    }

    .p-about-team-member-links a:hover svg path {
        fill: var(--black);
    }
}