.votes {
    margin-top: 50px;
    font-size: 1.5em;
    margin-bottom: 40px;
}

.vote {
    background-color: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

.up {
    color: green !important;
}

.down {
    color: red !important;
}

.news-image {
    width: 100%;
    height: 400px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 10px;
}

.news-title {
    padding: 0 0 20px 0;
}

.news-content {
    margin-top: 50px;
    word-wrap: break-word; /* Переносит длинные слова на новую строку */
    overflow-wrap: break-word; /* Обеспечивает перенос строк внутри элемента */
}
.news-content{
    color: #fff;    
}
.news-content a{
    color: red;
}


/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    .votes {
        margin-top: 20px;
        font-size: 1.2em;
    }

    .news-image {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .news-content {
        margin-top: 30px;
        max-width: 100vw;
    }
}
