/* ============================================
   BHSTORE NEWS - Премиум дизайн новостей
   Авторская разработка | Уникальная архитектура
   ============================================ */

/* ========== ДИЗАЙН-СИСТЕМА НОВОСТЕЙ ========== */
:root {
    --news-accent: #FF6B35;
    --news-accent-secondary: #F7931E;
    --news-surface: rgba(255, 255, 255, 0.02);
    --news-surface-hover: rgba(255, 255, 255, 0.04);
    --news-border: rgba(255, 255, 255, 0.04);
    --news-border-hover: rgba(255, 107, 53, 0.2);
    --news-glow: 0 0 40px rgba(255, 107, 53, 0.1), 0 0 80px rgba(255, 107, 53, 0.03);
    --news-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ========== БАННЕР НОВОСТЕЙ ========== */
.news-banner { 
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 60px;
    background: var(--neutral-900);
}

.news-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.15), transparent 70%),
        radial-gradient(ellipse at 70% 50%, rgba(108, 99, 255, 0.1), transparent 70%);
    z-index: 1;
}

.news-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--neutral-950), transparent);
    z-index: 2;
}

.news-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.45) contrast(1.05) saturate(0.7);
    transform: scale(1);
    transition: transform 20s ease;
    background: var(--neutral-900);
}

.news-banner:hover .news-banner-image {
    transform: scale(1.03);
}

.news-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 0 80px;
    background: radial-gradient(ellipse at 30% 50%, rgba(12, 10, 20, 0.55), transparent 70%);
}

.news-banner-content {
    max-width: 700px;
    animation: bannerReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.news-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--news-accent);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.news-banner-badge i {
    font-size: 0.9rem;
}

.news-banner-title {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.news-banner-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    display: block;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* Декоративные линии на баннере */
.news-banner-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.2;
}

.news-banner-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--news-accent), transparent);
    animation: bannerLineFloat 8s ease-in-out infinite;
}

.news-banner-line:nth-child(1) {
    top: 25%;
    width: 40%;
    left: -5%;
    animation-delay: 0s;
}

.news-banner-line:nth-child(2) {
    top: 55%;
    width: 35%;
    right: -5%;
    animation-delay: -3s;
}

.news-banner-line:nth-child(3) {
    top: 75%;
    width: 45%;
    left: 20%;
    animation-delay: -6s;
}

/* ========== АДАПТИВ БАННЕРА ========== */
@media (max-width: 968px) {
    .news-banner {
        height: 260px;
    }
    
    .news-banner-overlay {
        padding: 0 40px;
        background: radial-gradient(ellipse at 30% 50%, rgba(12, 10, 20, 0.6), transparent 70%);
    }
}

@media (max-width: 640px) {
    .news-banner {
        height: 200px;
    }
    
    .news-banner-overlay {
        padding: 0 24px;
        background: rgba(12, 10, 20, 0.5);
    }
    
    .news-banner-title {
        font-size: 1.6rem;
    }
    
    .news-banner-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .news-banner {
        height: 180px;
    }
    
    .news-banner-title {
        font-size: 1.4rem;
    }
}

/* ========== КОНТЕЙНЕР НОВОСТЕЙ ========== */
.news-container {
    max-width: 1280px;
    margin: 0 auto 80px;
    padding: 0 24px;
    position: relative;
}

/* ========== СТАТИСТИКА ========== */
.news-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--news-surface);
    border: 1px solid var(--news-border);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--news-transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--news-accent), var(--news-accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    background: var(--news-surface-hover);
    border-color: var(--news-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--news-glow);
}

.stat-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--news-accent);
    flex-shrink: 0;
    transition: all var(--news-transition);
}

.stat-card:hover .stat-card-icon {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.08) rotate(-5deg);
}

.stat-card-info h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #A09CAE;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.stat-card-info p {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

/* ========== ФИЛЬТРЫ ========== */
.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.news-filter-btn {
    padding: 10px 22px;
    background: var(--news-surface);
    border: 1px solid var(--news-border);
    border-radius: 50px;
    color: #A09CAE;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.news-filter-btn i {
    font-size: 0.85rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.news-filter-btn:hover {
    background: var(--news-surface-hover);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.news-filter-btn:hover i {
    opacity: 1;
}

.news-filter-btn.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.15));
    border-color: rgba(255, 107, 53, 0.4);
    color: var(--news-accent);
}

.news-filter-btn.active i {
    opacity: 1;
    color: var(--news-accent);
}

/* ========== ПОИСК ========== */
.news-search-wrapper {
    margin-bottom: 32px;
    position: relative;
    max-width: 480px;
}

.news-search-input {
    width: 100%;
    padding: 14px 20px 14px 52px;
    background: var(--news-surface);
    border: 1.5px solid var(--news-border);
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.news-search-input::placeholder {
    color: #5C5868;
}

.news-search-input:focus {
    border-color: var(--news-accent);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.news-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #5C5868;
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.news-search-input:focus ~ .news-search-icon {
    color: var(--news-accent);
}

/* ========== ЗАГОЛОВОК СЕКЦИИ ========== */
.news-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.news-section-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--news-accent);
}

.news-section-title {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.news-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
    margin-left: 16px;
}

/* ========== СЕТКА НОВОСТЕЙ ========== */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ========== КАРТОЧКА НОВОСТИ ========== */
.news-article {
    position: relative;
    background: var(--news-surface);
    border: 1px solid var(--news-border);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: all var(--news-transition);
    cursor: pointer;
    animation: articleReveal 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    opacity: 0;
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 240px;
}

.news-article:hover {
    transform: translateY(-6px);
    border-color: var(--news-border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), var(--news-glow);
}

/* Акцентная полоса */
.news-article::after {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 3px;
    background: linear-gradient(180deg, var(--news-accent), var(--news-accent-secondary), transparent);
    border-radius: 0 3px 3px 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.news-article:hover::after {
    transform: scaleY(1);
}

/* Изображение новости */
.news-article-media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1525, #252030);
}

.news-article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.news-article:hover .news-article-media img {
    transform: scale(1.08);
}

.news-article-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
}

/* Контент новости */
.news-article-body {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
}

.news-article-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 16px;
}

.news-article-category.announcement {
    background: rgba(59, 130, 246, 0.12);
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.news-article-category.updates {
    background: rgba(16, 185, 129, 0.12);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.news-article-category.events {
    background: rgba(139, 92, 246, 0.12);
    color: #A78BFA;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.news-article-category.promo {
    background: rgba(245, 158, 11, 0.12);
    color: #FBBF24;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.news-article-title {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.news-article:hover .news-article-title {
    background: linear-gradient(135deg, var(--news-accent), var(--news-accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.news-article-date {
    font-size: 0.85rem;
    color: #7C7888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-article-date i {
    color: var(--news-accent);
    font-size: 0.8rem;
}

.news-article-views {
    font-size: 0.85rem;
    color: #7C7888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-article-views i {
    color: #6C63FF;
    font-size: 0.8rem;
}

.news-article-excerpt {
    font-size: 0.95rem;
    color: #A09CAE;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--news-border);
}

.news-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.news-tag {
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    font-size: 0.75rem;
    color: #7C7888;
    transition: all 0.3s ease;
}

.news-tag:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--news-accent);
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: transparent;
    border: 1.5px solid rgba(255, 107, 53, 0.25);
    border-radius: 50px;
    color: var(--news-accent);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.news-read-more:hover {
    background: var(--news-accent);
    color: white;
    border-color: var(--news-accent);
}

.news-read-more:hover i {
    transform: translateX(4px);
}

/* ========== ДЕТАЛЬНАЯ НОВОСТЬ ========== */
.news-detail {
    max-width: 900px;
    margin: 0 auto;
}

.news-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #A09CAE;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 32px;
    padding: 10px 20px;
    background: var(--news-surface);
    border: 1px solid var(--news-border);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.news-detail-back:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-4px);
}

.news-detail-card {
    background: var(--news-surface);
    border: 1px solid var(--news-border);
    border-radius: 28px;
    overflow: hidden;
}

.news-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail-body {
    padding: 40px;
}

.news-detail-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.news-detail-category.announcement {
    background: rgba(59, 130, 246, 0.12);
    color: #60A5FA;
}

.news-detail-category.updates {
    background: rgba(16, 185, 129, 0.12);
    color: #34D399;
}

.news-detail-category.events {
    background: rgba(139, 92, 246, 0.12);
    color: #A78BFA;
}

.news-detail-category.promo {
    background: rgba(245, 158, 11, 0.12);
    color: #FBBF24;
}

.news-detail-title {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.news-detail-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--news-border);
}

.news-detail-meta span {
    font-size: 0.9rem;
    color: #7C7888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-detail-meta i {
    color: var(--news-accent);
}

.news-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #C4C1D4;
    margin-bottom: 32px;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-tags {
    margin-bottom: 32px;
}

.news-detail-tags h4 {
    font-size: 0.85rem;
    color: #7C7888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-detail-share {
    padding-top: 24px;
    border-top: 1px solid var(--news-border);
}

.news-detail-share h4 {
    font-size: 0.85rem;
    color: #7C7888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.share-btn.telegram {
    background: rgba(0, 136, 204, 0.15);
    color: #0088CC;
}

.share-btn.telegram:hover {
    background: #0088CC;
    color: white;
    transform: translateY(-2px);
}

.share-btn.vk {
    background: rgba(74, 118, 168, 0.15);
    color: #4A76A8;
}

.share-btn.vk:hover {
    background: #4A76A8;
    color: white;
    transform: translateY(-2px);
}

.share-btn.copy {
    background: rgba(255, 255, 255, 0.05);
    color: #A09CAE;
    border: 1px solid var(--news-border);
}

.share-btn.copy:hover {
    background: var(--news-accent);
    color: white;
    border-color: var(--news-accent);
    transform: translateY(-2px);
}

/* ========== ПАГИНАЦИЯ ========== */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--news-surface);
    border: 1px solid var(--news-border);
    border-radius: 12px;
    color: #A09CAE;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.pagination-btn:hover:not(:disabled):not(.active) {
    background: var(--news-surface-hover);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, var(--news-accent), var(--news-accent-secondary));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    color: #5C5868;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* ========== ПУСТОЕ СОСТОЯНИЕ ========== */
.news-empty-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--news-surface);
    border: 1px solid var(--news-border);
    border-radius: 24px;
}

.news-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #5C5868;
}

.news-empty-state h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 8px;
}

.news-empty-state p {
    color: #7C7888;
    margin-bottom: 24px;
}

/* ========== СОСТОЯНИЕ ЗАГРУЗКИ ========== */
.news-loading-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--news-surface);
    border: 1px solid var(--news-border);
    border-radius: 24px;
}

.news-loading-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 107, 53, 0.15);
    border-top-color: var(--news-accent);
    border-radius: 50%;
    animation: spinnerRotate 0.8s linear infinite;
}

.news-loading-state p {
    color: #7C7888;
    font-size: 1rem;
}

/* ========== АНИМАЦИИ ========== */
@keyframes bannerReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bannerLineFloat {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.2;
    }
    50% {
        transform: translateX(30px);
        opacity: 0.5;
    }
}

@keyframes articleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spinnerRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Задержки анимации для карточек */
.news-article:nth-child(1) { animation-delay: 0.05s; }
.news-article:nth-child(2) { animation-delay: 0.1s; }
.news-article:nth-child(3) { animation-delay: 0.15s; }
.news-article:nth-child(4) { animation-delay: 0.2s; }
.news-article:nth-child(5) { animation-delay: 0.25s; }
.news-article:nth-child(6) { animation-delay: 0.3s; }

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 968px) {
    .news-banner {
        height: 260px;
    }
    
    .news-banner-overlay {
        padding: 0 40px;
    }
    
    .news-article {
        grid-template-columns: 1fr;
    }
    
    .news-article-media {
        height: 200px;
    }
    
    .news-detail-image {
        height: 280px;
    }
    
    .news-detail-body {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .news-banner {
        height: 200px;
    }
    
    .news-banner-overlay {
        padding: 0 24px;
    }
    
    .news-banner-title {
        font-size: 1.6rem;
    }
    
    .news-banner-subtitle {
        font-size: 0.9rem;
    }
    
    .news-section-header {
        flex-wrap: wrap;
    }
    
    .news-section-line {
        display: none;
    }
    
    .news-article-body {
        padding: 20px;
    }
    
    .news-article-title {
        font-size: 1.2rem;
    }
    
    .news-article-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .news-article-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .news-read-more {
        width: 100%;
        justify-content: center;
    }
    
    .news-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .news-filters::-webkit-scrollbar {
        display: none;
    }
    
    .news-filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .news-detail-body {
        padding: 20px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .pagination-btn {
        min-width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}

/* ========== СКРОЛЛБАР ДЛЯ ФИЛЬТРОВ ========== */
@media (max-width: 640px) {
    .news-filters {
        mask-image: linear-gradient(to right, black 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
    }
}

/* ========== ДОСТУПНОСТЬ ========== */
@media (prefers-reduced-motion: reduce) {
    .news-article,
    .news-banner-content,
    .news-banner-line {
        animation: none !important;
        transition: none !important;
    }
}