.banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-width: 1200px;
}

.banner>img {
    width: 100%;
    height: 485px;
    display: block;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
    width: 90%;
}

.text-overlay h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.news-container {
    display: block;
    margin: 0 auto;
}

.header {
    margin-top: 50px;
    margin-bottom: 40px;
    text-align: center;
}

.header h1 {
    font-size: 24px;
    color: #4C4C4C;
    margin-bottom: 10px;
}

.header p {
    font-size: 14px;
    color: rgba(76, 76, 76, 0.6);
    line-height: normal;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.tab {
    background-color: transparent;
    padding: 16px 56px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 14px;
    color: #44A533;
    border: 1px solid #44A533;
    box-shadow: 0 22px 29px 0 rgba(68, 165, 51, 0.1);
    text-decoration: none;
    border-right: 0;
}

.tab:first-child {
    border-radius: 10px 0 0 10px;
}

.tab:last-child {
    border-radius: 0 10px 10px 0;
    border-right: 1px solid #44A533;
}

.tab:hover:not(.active), .tab.active {
    background-color: #44A533;
    color: #fff;
}

.news-list {
    margin: 100px 0 60px;
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 10px;
    box-sizing: border-box;
    position: relative;
    text-decoration: none;
    transition: background-color .3s;
}

.news-item:hover  {
    background-color: #F5F5F5;
    border-radius: 10px;
}

.news-item::after {
    content: '';
    display: block;
    width: auto;
    height: 1px;
    background-color: #D8D8D8;
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 0;
}

.news-item img {
    width: 145px;
    height: 145px;
    border-radius: 10px;
    object-fit: cover;
    float: left;
    margin-right: 20px;
}

.news-content {
    flex: 1;
    overflow: hidden;
}

.news-content-title {
    display: flex;
    align-items: center;
    margin-bottom: 33px;
}

.news-content h2 {
    flex: 1;
    font-size: 16px;
    font-weight: bold;
    color: #3D3D3D;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: normal;
}

.news-content p {
    font-size: 14px;
    color: #3D3D3D;
    margin: 0;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: normal;
}

.news-content .date {
    font-size: 14px;
    color: #006CBA;
    margin-left: 20px;
}

.news-item:hover .news-content h2,
.news-item:hover .news-content p {
    color: rgb(62, 151, 243);
}