.news-images {
    width: 50%;
    float: left;
    margin: 0 20px 10px 0;
}

.news-images ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-images img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.news-images li:nth-of-type(n + 2) img {
    display: none;
}

.news-comment-form {
    width: 100%;
}

.news-comment-form textarea {
    width: 100%;
    min-height: 100px;
}

.news-similar-container {
    margin: 50px 0;
}

.news-similar-list li:nth-of-type(3n) {
    margin-right: 0;
}

.news-duplicates ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-duplicate {
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-duplicate-source-icon {
    margin-right: 10px;
}

.news-duplicate-time {
    display: inline-block;
    margin-right: 10px;
    font-size: 90%;
    color: gray;
}

.news-card__source {
    font-size: 80%;
    color: gray;
    overflow-x: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    white-space: nowrap;
}

.news-card__source img {
    margin-right: 5px;
}

.news-similar-list .news-card__info {
    margin-top: 10px;
}

.user-news {
    margin-top: 25px;
    position: relative;
}

.user-news::before, .user-news::after {
    display: block;
    content: '';
    position: absolute;
    border-radius: 3px;
}

.user-news::before {
    width: calc(100% - 36px);
    height: 14px;
    bottom: -11px;
    left: 18px;
    background-color: #F3F3F3;
}

.user-news::after {
    width: calc(100% - 16px);
    height: 8px;
    bottom: -5px;
    left: 8px;
    background-color: #D6D6D6;
}

.user-news__wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    color: #FFF;
    -ms-align-items: center;
    align-items: center;
    background-color: #292929;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px 10px 20px;
    position: relative;
    z-index: 1;
}

.user-news__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    margin-right: 15px;
}

.user-news__title {
    color: white;
    font-size: 110%;
    font-weight: bold;
    margin-bottom: 7px;
}

.user-news__text {
    color: rgba(255, 255, 255, .5);
    font-size: 95%;
    line-height: 125%;
}

.user-news__button {
    margin-top: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 16px;
    background-color: #CC3333;
    transition: background-color .2s ease;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    color: white;
    font-size: 80%;
    font-weight: bold;
    margin-left: 15px;
}

@media (min-width: 640px) {
    .user-news__wrap {
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        -o-flex-direction: row;
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px 20px 15px;
    }
}

@media (max-width: 640px) {
    .user-news__title {
        text-align: center;
    }
}
