.event_news__single_page_container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.event_news__single_page_banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url('assets/images/people_title_bg.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
}

.event_news__single_page_banner_text {
    font-weight: 700;
    font-size: 40px;
    color: #532C6D;
    max-width: 1000px;
    text-align: center;
}

.event_news__single_page_container_bg {
    padding-top: 40px;
    padding-bottom: 60px;
    position: relative;
    background-image: url('assets/images/people_left_bg.png');
    background-repeat: no-repeat;
    background-position: left -30px;
    background-size: contain;
}

.event_news__single_page_container_bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/people_right_bg.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    bottom: 0;
    right: 0;
    pointer-events: none;
}


.event_news__single_page {
    max-width: 1180px;
    margin-left: auto !important;
    margin-right: auto !important;

    .event_news__detail_parent_container {
        display: flex;
        justify-content: flex-end;
        max-width: 1180px;
    }

    .event_news__detail_container {
        display: flex;
        flex-direction: row;
        width: fit-content;
        background-color: #E8F4F3;
        border-radius: 20px;
        border: 1px solid #21978A1A;
        padding: 5px 12px 3px 12px;
        gap: 10px;
        color: #1A796E;
        font-size: 14px;
        text-transform: uppercase;
    }

    .event_news__detail_separator{
        width: 1px;
        background-color: #21978A;
        border-radius: 6px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .event_news__detail_date,
    .event_news__detail_author,
    .event_news__detail_type{
        position: relative;
        padding-left: 30px;
    }

    .event_news__detail_date::before{
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        left: 0px;
        top: 2px;
        background-image: url('assets/images/date.png');
    }

    .event_news__detail_author::before{
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        left: 0px;
        top: 2px;
        background-image: url('assets/images/author.png');
    }

    .event_news__detail_type::before{
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        left: 0px;
        top: 2px;
        background-image: url('assets/images/type.png');
    }
}


@media screen and (max-width: 767px) {
    .event_news__detail_container{
        margin: 0 20px;
    }

    .event_news__single_page_banner{
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .event_news__single_page_banner_text{
        font-size: 24px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .event_news__single_page_container_bg {
    padding-right: 20px;
    padding-left: 20px;
  }
}