/* Теги в стиле Telegram */
.news-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.tags-label {
    font-size: 12px;
    color: #666;
    margin-right: 4px;
}

.tag-button {
    display: inline-block;
    background-color: #f0f2f5;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    color: #2c3e50;
    text-decoration: none;
    transition: background-color 0.2s;
}

.tag-button:hover {
    background-color: #e4e6e9;
    text-decoration: none;
}

/* Мобильная версия */
@media (max-width: 899px) {
    .tag-button {
        padding: 6px 14px;
        font-size: 13px;
        border-radius: 20px;
    }
}