.news-setion {
    padding: 120px 0;
}

.news-setion .container {
    display: flex;
    flex-wrap: wrap;
}

.news-setion .container h2 {
    width: 100%;
}

.sidebar {
    width: 28%;
}

.sidebar h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.clear-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    text-decoration: underline;
}

.clear-btn:hover {
    color: #C51230;
}

.filter-list {
    list-style: none;
    padding: 0;
}

.filter-list li {
    margin-bottom: 8px;
}

.filter-list input {
    width: 14px;
    height: 14px;
    border: 1px solid #C51230;
}

.content_part {
    width: calc(72% - 40px);
    margin-left: 40px;
}

.search-sort {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5.5px 0;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.search-sort-left {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.search-sort-right {
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

.search-btn {
    display: flex;
    align-items: center;
    column-gap: 15px;
    cursor: pointer;
}


#sort-by,
#search-bar {
    padding: 10px;
    font-size: 16px;
    border: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.article {
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    margin-bottom: 24px;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}


input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    display: flex;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
}

.checkmark {
    width: 14px;
    height: 14px;
    border: 1px solid #BB0000;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    top: 8px;
    transition: background-color 0.3s, border-color 0.3s;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

input[type="checkbox"]:checked+.checkmark {
    background-color: #BB0000;
    border-color: #BB0000;
}

input[type="checkbox"]:checked+.checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 2.5px;
    height: 6px;
    border: solid white;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

/* -------------------------------------------------------------- */


/* -------------------------------------------------------------- */

.sub-banner {
    position: relative;
    z-index: 0;
}

.sub-banner .container {
    display: flex;
    align-items: flex-end;
    padding-bottom: 30px;
    min-height: 320px;
}

.sub-banner .container h1 {
    color: #ffffff;
    font-weight: 400;
    font-size: 56px;
    line-height: 1;
}

.sub-banner:before {
    opacity: 0.8 !important;
    background-image: linear-gradient(197deg, rgba(134, 143, 150, 0) 0%, rgb(0, 0, 0) 100%) !important;
    bottom: 0;
    content: "" !important;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

/* -------------------------------------------------------------- */


.search-pannel form {
    --height: 40px;
    height: var(--height);
    width: 450px;
    display: flex;
    padding: 0 15px 0 0;
    align-items: center;
    background: #D9D9D933;
    border-radius: 2px;
}

.search-expand {
    width: 100%;
    border: none;
    color: #000 !important;
    font-size: 14px;
    font-weight: 400;
    background: #fff;
    height: var(--height);
    border: none !important;
}

.search-expand:focus {
    outline: none;
}

.search-pannel button {
    background: none;
}

/* -------------------------------------------------------------- */

.news_list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 32px;
    margin-top: 32px;
}

.news_list_item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.news_list_image {
    width: 39%;
}

.news_list_content {
    width: calc(61% - 32px);
}

.news_list_content span {
    font-size: 17px;
    font-weight: bold;
    color: #BB0000;
}

.news_list_content h4 {
    margin: 15px 0;
    line-height: 1.3;
    font-size: 20px;
}

.news_list_content .link {
    display: flex;
    align-items: center;
    text-decoration: none;
    column-gap: 10px;
    color: #818181;
    font-size: 15px;
    font-weight: 500;
}

.news_list_content .link:hover {
    color: #BB0000;
}

/* -------------------------------------------------------------- */
/* -------------------------------------------------------------- */

@media screen and (max-width: 1500px) {
    .news-setion .container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 1200px) {
    .events-section {
        padding: 80px 0;
    }

    .sub-banner.primary .container {
        padding-inline: 15px;
    }

    .sub-banner.primary .container {
        min-height: 300px;
    }

    .news-setion {
        padding: 80px 0;
    }

    .custom-checkbox {
        font-size: 16px;
    }

    .news_list_content h4 {
        margin: 10px 0;
        font-size: 18px;
    }

    .news_list {
        row-gap: 22px;
        margin-top: 22px;
    }
}

@media screen and (max-width: 767px) {
    .events-section {
        padding: 50px 0;
    }

    .sub-banner .container h1 {
        font-size: 30px;
    }

    .events-section .container {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .sidebar,
    .content_part {
        margin: 0;
        width: 100%;
    }

    .custom-checkbox {
        font-size: 16px;
    }

    .news-setion {
        padding: 50px 0;
    }

    .news_list_image {
        width: 100%;
    }

    .news_list_content {
        padding-top: 12px;
        width: 100%;
    }

    .sidebar {
        margin-bottom: 30px;
    }

    .search-sort-right,
    .search-pannel form {
        width: 100%;
    }
}