/*------------------------------------
 * CSS
 ------------------------------------*/

.contact-people {
    background: var(--portal-background);
}

.person-panel {
    display: flex;
    flex-direction: column;
}

@media (min-width: 414px) {
    .person-panel {
        flex-direction: row;
    }
    .person-panel > * {
        flex: 1;
    }
}


.person-panel__right {
    margin-bottom: 30px;
}

@media (min-width: 414px) {
    .person-panel__right {
        margin-bottom: 0;
    }
}

.person-panel__right ul {
    max-width: 400px;
}

.person-panel__right li {
    padding: 7px 15px;
    margin-bottom: 10px;
    font-size: 1em;
    background: #fff;
}

@media (min-width: 1367px) {
    .person-panel__right li {
        padding: 15px 35px;
    }
}

.person-panel__right li:first-child {
    margin-bottom: 0;
    background: var(--portal-blue);
    color: #fff;
    font-weight: 700;
    font-size: 1.2em;
}

.person-panel__right a {

}

.person-panel__right span {
    font-weight: 900;
}

.person-panel__left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.person-panel__left .etp-button {
    margin-top: 25px;
}

.person-panel__image {
    width: 185px;
    height: 185px;
    border-radius: 50%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .person-panel__image {
        width: 285px;
        height: 285px;
    }
}

.person-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*------------------------------------
 * Contact People (Managers contact list)
 ------------------------------------*/

.contact-people__body {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .contact-people__body {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.people-panel__wrapper {
    width: 100%;
}

@media (min-width: 768px) {
    .people-panel__wrapper:nth-of-type(odd) {
        background: var(--portal-background);
    }
}

.people-panel__wrapper .container {
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .people-panel__wrapper .container {
        padding-left: 0;
        padding-right: 0;
    }   
}

@media (min-width: 768px) {
    .people-panel__wrapper .container {
        flex-direction: row;
    }   
}

.people-panel {
    width: 100%;
    padding: 8% 15px;
    margin-right: auto;

    display: inline-flex;
    justify-content: space-between;
}

.people-panel:nth-child(odd) {
    background: var(--portal-background);
}

@media (min-width: 768px) {
    .people-panel {
        width: 50%;
        padding: 3% 0;
    }

    .people-panel:nth-child(odd) {
        background: none;
    }
}

@media (min-width: 1280px) {
    .people-panel {
        padding: 2% 0;
    }
}

.people-panel__image {
    width: 30%;
    display: inline-flex;
    align-items: center;
}

@media (min-width: 1280px) {
    .people-panel__image {
        width: 18%;
    }
}

.people-panel__image div {
    border-radius: 50%;
    overflow: hidden;
}

.people-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.people-panel__body {
    width: 65%;
}

@media (min-width: 1280px) {
    .people-panel__body {
        width: 75%;
    }
}

.people-panel h3 {
    font-size: 1.2em;
    margin-bottom: 4%;
}

@media (min-width: 1367px) {
    .people-panel h3 {
        font-size: 1.5em;
    }
}

.people-panel ul {
    margin-left: 0;
}

.people-panel ul li {
    font-size: 1em;
}

.people-panel span {
    font-weight: bold;
}