.people_single_page_container {
    background-image: url(assets/images/Pop-up-side-bg.png);
    background-position: top;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 500px;
}

.people_single_page {
    max-width: 1127px;
    margin-left: auto !important;
    margin-right: auto !important;

    .people_header {
        display: flex;
    }

    .post_thumbnail {
        width: 195px;
        position: relative;
    }

    .post_thumbnail::before{
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: #EF7C00;
        left: -6px;
        bottom: -6px;
        border-radius: 12px;
    }

    .post_thumbnail img {
        box-shadow: none;
        -webkit-box-shadow: none;
        border: #ddd solid 1px;
        border-radius: 12px;
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .people_header_child_content {
        margin-left: 30px;
    }

    .entry_header {
        margin-bottom: 10px;
    }

    .entry_title {
        font-size: 18px;
        margin: 0 0 5px;
        text-transform: uppercase;
        color: #303030;
        font-weight: 700;
        line-height: 1.2;
    }

    .people_title,
    .people_department,
    .people_faculty {
        color: #999;
        font-style: italic;
        font-size: 14px;
        font-weight: normal;
        margin: 0 0 5px;
        text-transform: uppercase;
    }

    .single_people_btn_1 {
        cursor: pointer;
        display: block;
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
        color: rgb(255, 255, 255) !important;
        background: rgb(239, 124, 0);
        border-width: 2px;
        border-style: solid;
        border-color: rgb(239, 124, 0);
        border-image: initial;
        border-radius: 3px;
        overflow: hidden;
        padding: 7px 20px;
        transition: 0.5s;
        margin-top: 25px;
        max-width: 130px;
        text-decoration: none;
        font-size: 14px;
    }

    .single_people_btn_1:hover {
        background: #000;
        border-color: #000;
        color: #fff !important;
    }

    .repeater_item {
        position: relative;
    }

    .repeater_item::before {
        position: absolute;
        content: "";
        height: 1px;
        width: 100%;
        bottom: -15px;
        left: 0;
        background-color: #9999994D;
    }

    .repeater_item:last-child::before {
        content: none;
    }

    .repeater_title {
        color: #013D7C;
        font-size: 21px;
        font-weight: 500;
    }

}

.youtube-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.youtube-modal-content {
    position: relative;
    height: 80%;
    width: 80%;
    max-width: 1127px;
}

.youtube-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-video-wrapper iframe {
    width: 100%;
    height: 100%;
}

.youtube-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .people_single_page {
        padding: 20px;

        .people_header {
            flex-direction: column;
        }

        .post_thumbnail {
            width: auto;
        }

        .people_header_child_content {
            margin-left: 0;
            margin-top: 30px;
            margin-bottom: 30px;
        }
    }

    .youtube-modal-content {
        height: 50%;
    }
}

