/* --- Стили для плагина новостей (версия "одна новость - одно сообщение") --- */

/* Ссылка на источник и дата (верхняя строка) */
.chat-message .news-source-link {
    display: block;
    font-size: 0.85em;
    color: #888;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.chat-message .news-source-link:hover {
    color: #555;
}

/* Заголовок новости */
.chat-message .news-title-link {
    display: block;
    font-size: 1.1em;
    font-weight: bold;
    
    text-decoration: none;
    line-height: 1.3;
}
.chat-message .news-title-link:hover {
    text-decoration: underline;
}

/* Картинка новости */
.chat-message .news-image-full {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 12px;
    border-radius: 8px;
    background-color: #f0f0f0;
}

/* Описание новости */
.chat-message .news-description {
    font-size: 0.95em;
    line-height: 1.5;
    color: #ffffff; /* Цвет как у описаний в Google */
    margin: 10px 0 0 0;
    padding: 0;
}
