* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid red; */
}

h2 {
    margin: 40px 0 20px 0;
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.news {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    /* border: 1px solid red; */
    margin: 20px 0 0;
    padding-bottom: 15px;
    box-shadow: 0 10px 10px -15px black;
}

.news .news-name{
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    width: 100%;
}

.news .news-name p {
    padding: 0;
    margin: 5px 0;
    font-size: 12px;
    color: #727377;
    width: 100%;
}

.news .news-img {
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 200px;
    height: 100%;
    border-radius: 5px;
    box-shadow: 3px 5px 10px -1px black;
    /* border: 1px solid blue; */
}

.news .news-img img {
    width: auto;
    height: 100%;
    display: block;
}

.filter-group {
    display: block;
    width: 100%;
    
}

.news-search {
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    justify-content: start;
    gap: 10px;
}

.news-search input {
    width: 90%;
    height: 40px;
}