.news_single_page_parent_container {
    background-color: #F8F8F8;
    margin: 0 !important;
}

.news_single_page_banner {
    background-image: url(assets/images/event_banner_bg.png);
    padding-top: 32px;
    padding-bottom: 32px;
    background-position: left;
    background-size: cover;
}

.news_single_page_banner_text {
    max-width: 1140px;
    margin: 0 auto;
    color: white;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.3em;
}

.news_single_page_container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    max-width: 1140px;
    margin: 0 auto;
    margin-top: 56px;
    margin-bottom: 56px;
}

.left_news {
    max-width: 50%;
    background-color: white;
    padding-top: 16px;
    padding-right: 24px;
    padding-bottom: 16px;
    padding-left: 24px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-left-width: 4px;
    border-left: 4px solid #7A2CBF;
}

.left_news_child_content {
    color: #1F2933;
}

.left_news_child_date_location_container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.news_online_location {
    color: #030805;
    font-size: 16px;
}

.left_news_child_social_parent_container {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin: 32px 0;
    align-items: center;
}

.left_news_child_social_register_link {
    padding-top: 7px;
    padding-right: 25px;
    padding-bottom: 7px;
    padding-left: 25px;
    border-radius: 6px;
    background-color: #7A2CBF;
    color: white !important;
    font-size: 16px;
}

.left_news_child_social_container {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.news_social_icon {
    width: 24px;
    height: 24px;
}

.left_news_child_social_register_link:hover {
    color: white !important;
    box-shadow: 0px 6px 3px 0px rgba(12, 8, 4, 0.2) !important;
}


.news_includes_parent_container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #F4F5F7;
    padding: 32px;
    border-top: 1px solid #FFFFFF33;
    margin-bottom: 32px;
}

.news_includes_header{
    font-weight: 700;
    font-size: 20px;
    color: #1F2933;
}

.news_includes_container {
    columns: 2;
    column-gap: 24px;
}

.news_includes_check_icon{
    width: 24px;
    height: 24px;
}

.news_includes_repeater_item{
    color: #1F2933;
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    break-inside: avoid;
}


.news_details_parent_container{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news_details_header{
    font-size: 24px;
    color: #1F2933;
}


.news_details_repeater_item_header{
    color: #1F2933;
    font-weight: 700;
    padding: 16px 0;
    cursor: pointer;
}

.news_details_arrow_icon{
    margin-right: 16px;
    transition: all 0.3s ease-in-out;
}

.news_details_repeater_item_header.news_open{
    .news_details_arrow_icon{
        transform: rotate(180deg);
    }
}

.news_details_repeater_item_content{
    color: #1F2933;
    max-height: 0;
    transition: max-height 1s cubic-bezier(0, 1, 0, 1);
    overflow: hidden;
}

.news_details_repeater_item_content.news_open{
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}



.right_news {
    position: sticky;
    top: 0;
    height: fit-content;
}

.bottom_news_child_content {
    padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
    .news_single_page_banner_text{
        padding: 0 20px;
    }
    
    .news_single_page_container {
        flex-direction: column;
        padding: 0 20px;
    }

    .right_news {
        position: relative;
    }

    .left_news {
        order: 2;
        max-width: 100%;
    }

    .left_news_child_social_parent_container {
        flex-direction: column;
        align-items: flex-start;
    }

    .news_includes_container{
        columns: auto;
    }
}