/*noinspection CssOptimizeSimilarProperties*/
.news-list {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: left;
    min-height: calc(100vh - 216px);
}

.news-list .news-wrap {
    overflow: auto;
    padding-left: 30px;
    padding-right: 30px;
    background-color: rgba(0, 0, 0, 0.35);
    min-height: calc(100vh - 216px);
}

.news-list .news-wrap .news {
    display: block;
    overflow: auto;
    max-width: 800px;
    width: 100%;
    padding: 25px;
    background-color: #fbfbfb;
    margin: 80px auto;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
    border: 1px solid #073c5e;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8);
    color: #073c5e;
}

/*noinspection CssOptimizeSimilarProperties*/
.news-list .news-wrap img {
    display: block;
    float: left;
    max-width: 100px;
    max-height: 100px;
    border-radius: 25px;
    margin-right: 30px;
}

.news-list .news-wrap .text.long {
    width: 100%;
}

.news-list .news-wrap .text:not(.long) {
    float: left;
    width: calc(100% - 130px);
}

.news-list .news-wrap .title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
    height: 25px;
}

.news-list .news-wrap .description-short {
    letter-spacing: 0.04rem;
    height: 104px;
    overflow: hidden;
}

.news-list .news-wrap .news:hover {
    border: 1px solid #fbfbfb;
    background-color: #073c5e;
    color: #fbfbfb;
}