.news__preview-read-more {
    color: #009BFF;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.news__preview-read-more::after {
    content: url('./images/arrow.png');
    position: relative;
    transition: 200ms ease all;
    margin-left: 8px;
    top: 2.5px;
}

.news__preview-read-more:hover::after {
    transform: translateX(8px);
}

.news-preview {
    width: calc(25% - 12px);
    margin: 0 6px 12px;
    border: 2px solid #F0F1F5;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.news-preview__info {
    width: 100%;
}

.news-preview__date {
    padding: 24px 32px 15px;
    color: #6B9AB2;
}

.news-preview__title {
    transition: 200ms ease all;
    font-size: 24px;
    font-weight: 700;
    margin: 0 32px 15px;
}

.news-preview__title:hover {
    color: #009BFF;
}

.news-preview__description {
    color: #4D4D4D;
    line-height: 21px;
    padding: 0 32px 20px;
}
.news-preview__description p:last-child::after {
    content: '...';
}

.news__preview-read-more {
    margin: 0 32px 32px;
}

.news-preview__image-holder {
    height: 200px;
    display: block;
}

.news-preview__image {
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 0px 0px;
    object-fit: contain;
    object-position: center;
}

@media screen and (max-width: 1199px) {
    .news-preview {
        width: calc(33.3% - 12px);
    }
}

@media screen and (max-width: 989px) {
    .news-preview {
        width: calc(50% - 12px);
    }
}

@media screen and (max-width: 767px) {
    .news-preview {
        width: 100%;
    }
}

@media screen and (max-width: 489px) {
    .news-preview__date {
        padding: 15px;
    }
    .news-preview__title {
        margin: 0 15px 15px;
        font-size: 19px;
    }
    .news-preview__description {
        padding: 0 15px 15px;
    }
    .news__preview-read-more {
        margin: 0 15px 15px;
    }
}
