.news__wrapper-content {
    justify-content: space-between;
}

.news__left {
    width: 78%;
}

.news__item {
    margin-bottom: 40px;
}

.news__item_title {
    margin-top: 0;
    margin-bottom: 3px;
    font-size: 27px;
    font-weight: 400;
    transition: color .3s ease;
}

.news__item_title a {
    border-bottom: 1px solid transparent;
    transition: border .3s ease;
}

.news__item_title a:hover {
    text-decoration: underline;
}

.news__item_link {
    margin-bottom: 10px;
    font-size: 12px;
}

.news__item_info {
    margin-bottom: 5px;
    font-size: 12px;
}

.news__item_info p {
    margin-right: 20px;
}

.news__item_info p a {
    font-weight: 600;
    color: var(--main-color);
}

.news__item_info p svg {
    margin-left: 5px;
}

.news__filter {
    width: 20%;
    padding-left: 40px;
    border-left: .75px solid var(--border-color);
}

.news__filter_title {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 27px;
    font-weight: 400;
}

.news__filter_wrapper.mobile select {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    background-color: var(--body-color);
    color: var(--text-color-main);
    border: 0.75px solid var(--border-color);
    box-shadow: var(--shadow);
    border-radius: 4px;
}


.news__filter-form {
    position: relative;
}

.news__filter_wrapper {
    flex-direction: column;
}

.news__filter-radio {
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
}

.news__filter-radio input {
    position: absolute;
    opacity: 0;
}

.news__filter-radio span {
    margin-left: 25px;
}

.news__filter-radio span::after {
    content: ' ';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background-color: var(--main-color);
    opacity: 0;
}

.news__filter-radio span::before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: 1px solid var(--main-color);
}

.news__filter-radio input:checked + span::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .news__wrapper-content {
        flex-direction: column-reverse;
    }

    .news__filter {
        width: 100%;
        margin-bottom: 20px;
        padding: 6px;
        background-color: white;
        border-left: None;
    }

    .news__left {
        width: 100%;
    }

    .news__item_title {
        margin-top: 0;
        margin-bottom: 2px;
        font-size: 21px;
    }

    .news__filter_title {
        margin: 0;
        padding-left: 6px;
        font-size: 14px;
    }

    .news__filter_wrapper {
        display: none;
    }

    .news__filter_wrapper.mobile {
        display: block;
        width: 100%;
    }
}