.news-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}
.news-item {
    width: calc(50% - 1rem);
    position: relative;
    box-shadow: 0px 0px 14px 3px rgba(34, 60, 80, 0.2);
}
.news-item a {
    display: flex;
    min-height: 135px;
}
.news-item .left {
    padding: 21px 27px;
    position: relative;
    z-index: 1;
    background-color: white;
    width: 69%;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}
.news-item .right {
    position: absolute;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-size: auto;
    background-position-x: right;
    background-position-y: 0;
    background-repeat: no-repeat;
}
.left .date {
    font-size: 10.5pt;
    color: #879fab;
    margin-bottom: 5px;
}
.left .title {
    font-size: 10pt;
    line-height: 13pt;
    margin-bottom: 7px;
}
.left .tag {
    display: inline-flex;
}
.left .tag .btn-def {
    color: white;
    text-decoration: none;
    font-family: "Proxima Nova Rg";
    background-color: #aadcf7;
    border-radius: 60px;
    padding: 2px 15px;
    font-size: 10pt;
}
.news-list .search-page {
	flex: 1 1 100%;
}