/* news-detail.css */
.news-detail-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.news-content-body {
    line-height: 1.8;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85) !important;
}

.news-content-body h1, .news-content-body h2, .news-content-body h3 {
    color: var(--text-white);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Скрытие первого заголовка если он дублирует основной */
.news-content-body > h1:first-child,
.news-content-body > p:first-child > strong:only-child {
    display: none;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-btn:hover {
    transform: translateY(-3px);
    color: var(--text-white);
}

.share-btn.vk:hover { background: #4C75A3; }
.share-btn.telegram:hover { background: #0088cc; }
.share-btn.whatsapp:hover { background: #25D366; }

.similar-news-card {
    transition: all 0.3s ease;
}

.similar-news-card:hover {
    transform: translateY(-5px);
    border-color: var(--bs-primary) !important;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    color: var(--bs-primary) !important;
    padding-left: 5px;
}

.sidebar-news-item:hover .sn-content h6 {
    color: var(--bs-primary) !important;
}
