.news-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5%;
    row-gap: 40px;
    margin-top: 50px;
    justify-content: flex-start;
}
.news-th img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.news-link {
    width: 30%;
    box-shadow: 0 0 8px #00000026;
    border-radius: 12px;
    font-weight: 600;
    font-family: "Montserrat", "Noto Sans", "Sen", sans-serif;
}
.news-content {
    padding: 30px;
}
.news-c-t {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.news-title {
    font-size: 16px;
}
#category-form {
    display: flex;
    justify-content: flex-start;
    border: 2px solid #353434;
    border-radius: 12px;
    column-gap: 3%;
    row-gap: 15px;
    padding: 20px 15px 15px 15px;
    flex-wrap: wrap;
}
#category-form label {
    border: 1px solid #ff76b2;
    border-radius: 5px;
    padding: 10px 17px;
    text-align: center;
    align-items: center;
    font-weight: 500;
    font-family: "Montserrat", "Noto Sans", "Sen", sans-serif;
}
@supports (-webkit-touch-callout: none) {
  #category-form label {
    padding-inline-start: 0 !important;
  }
}
#category-form label:hover {
    background-color: #fdeaf2;
}
.radio-check {
    background-color: #ffd1e5;
}
.news {
    width: 70%;
    margin: 50px auto 0 auto;
}
.filter-p {
    display: inline-block;
    position: relative;
    top: 10px;
    left: 20px;
    padding: 0 5px;
    background-color: white;
    font-weight: 700;
    font-family: "Montserrat", "Noto Sans", "Sen", sans-serif;
}

@media screen and (max-width: 1350px) {
    .news {
        width: 90%;
    }
}

@media screen and (max-width: 1140px) {
    .news-content {
            padding: 25px 15px;
    }
    .news-c-t {
        margin-bottom: 10px;
        font-size: 12px;
    }
}

@media screen and (max-width: 1070px) {
    .news-list {
        column-gap: 5%;
    }
    .news-link {
        width: 47.5%;
    }
}