.people_single_page_banner {
    background-image: url(assets/images/people-bg.jpg);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;

    .people_single_page_banner_text {
        font-weight: 700;
        font-size: 66px;
        line-height: 66px;
        text-align: center;
        vertical-align: bottom;
        text-transform: uppercase;
        background: linear-gradient(90deg, #FF9A4E 0%, #FFDC58 40%, #FFDC58 60%, #FF9A4E 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.1);
    }
}

.people_single_page_container{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.people_single_page_container_bg{
    background-image: url(assets/images/Square-Bg.png);
    background-size: cover;
}

.people_single_page {
    max-width: 1140px;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    flex-direction: row;
    gap: 60px;
    padding-top: 50px;
    padding-bottom: 50px;

    .left_people {
        height: fit-content;
    }

    .left_people_child_image {
        width: 360px;
    }

    .post_thumbnail img {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        width: 100%;
    }

    .left_people_child_content {
        position: relative;
        display: flex;
        flex-direction: column;
        padding-top: 20px;
        padding-right: 15px;
        padding-bottom: 20px;
        padding-left: 15px;
        gap: 10px;
    }

    .left_people_child_content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
        padding: 1px;
        background: linear-gradient(91.38deg, #D5B172, #F2EFC3, #D5B172);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
        z-index: -1;
    }

    .left_people_child_content::after {
        content: "";
        position: absolute;
        inset: 1px;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        background: white;
        z-index: 0;
    }

    .left_people_child_content_contact_details {
        font-weight: 700;
        font-size: 19px;
        line-height: 19px;
        text-transform: uppercase;
        color: #000000;
        z-index: 1;
    }

    .left_people_child_content_office,
    .left_people_child_content_tel,
    .left_people_child_content_fax,
    .left_people_child_content_email,
    .left_people_child_content_web_page {
        position: relative;
        padding-left: 25px;
        font-weight: 400;
        font-size: 17px;
        line-height: 27px;
        z-index: 1;
    }

    .left_people_child_content_email a,
    .left_people_child_content_web_page {
        color: #9F6606 !important;
    }

    .left_people_child_content_office::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 15px;
        height: 15px;
        margin-top: 6px;
        background-image: url(assets/images/map-pin.png);
    }

    .left_people_child_content_tel::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 15px;
        height: 15px;
        margin-top: 6px;
        background-image: url(assets/images/phone.png);
    }

    .left_people_child_content_email::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 15px;
        height: 15px;
        margin-top: 6px;
        background-image: url(assets/images/Mail.png);
    }

    .left_people_child_content_web_page::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 15px;
        height: 15px;
        margin-top: 6px;
        background-image: url(assets/images/Link.png);
    }


    .entry_title {
        font-weight: 700;
        font-size: 30px;
        line-height: 34px;
        text-transform: uppercase;
        padding-bottom: 15px;
    }

    .people_title {
        font-weight: 500;
        font-size: 17px;
        line-height: 21px;
        text-transform: uppercase;
        color: #9F6606;
        padding-bottom: 25px;
    }

    .repeater_item {
        padding-bottom: 25px;
    }

    .repeater_title {
        font-weight: 700;
        font-size: 22px;
        line-height: 32px;
        text-transform: uppercase;
        color: #000000;
        padding-bottom: 20px;
    }

    .repeater_item p {
        font-weight: 400;
        font-size: 17px;
        line-height: 27px;
    }

}

@media screen and (max-width: 767px) {
    .people_single_page {
        flex-direction: column !important;
        padding: 20px;
    }

    .left_people_child_image {
        width: 100% !important;
    }

    .people_single_page .fl-col-content{
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .people_single_page {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .people_single_page .fl-row-content-wrap{
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}