:root {
    /* Colors */
    --primary-navy: #3E3E3E;
    --accent-orange: #F27E03;
    --pure-white: #FFFFFF;
    --light-gray: #FAFAFA;
    --mid-gray: #D0D0D0;
    --text-dark: #3E3E3E;
    --text-gray: #6B6B6B;
    --border: #E5E5E5;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --space-xxxl: 96px;
}

/* Hero Section */
.hero--news {
    margin-top: 80px;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.hero--news .hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero--news .hero-content {
    max-width: 800px;
}

.hero--news .hero-eyebrow {
    color: var(--accent-orange);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-sm);
}

.hero--news .hero-title {
    color: var(--pure-white);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.hero--news .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* News Archive Section */
.news-archive-section {
    padding: var(--space-xxl) 0;
}

.news-archive-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

/* News Grid - стиль как solutions-grid */
.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xxl);
}

.news-archive-item {
    background: var(--pure-white);
    border: 1px solid var(--mid-gray);
    padding: var(--space-lg);
    transition: all 0.3s;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.news-archive-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--news-bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    transition: all 0.4s ease;
    z-index: 0;
    filter: grayscale(20%);
}

.news-archive-item:hover::before {
    opacity: 0.35;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.news-archive-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 60%, transparent 100%);
    z-index: 0;
}

.news-archive-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 43, 73, 0.1);
    border-color: var(--accent-orange);
}

.news-archive-title {
    color: var(--primary-navy);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.news-archive-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.news-archive-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.news-archive-link:hover {
    gap: 12px;
}

/* Pagination */
.news-pagination {
    margin-top: var(--space-xxl);
    text-align: center;
}

.news-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    gap: var(--space-sm);
    padding: 0;
    margin: 0;
}

.news-pagination .page-numbers li {
    display: inline-block;
}

.news-pagination .page-numbers a,
.news-pagination .page-numbers span {
    display: inline-block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.2s;
    font-weight: 500;
}

.news-pagination .page-numbers a:hover {
    background: var(--accent-orange);
    color: var(--pure-white);
    border-color: var(--accent-orange);
}

.news-pagination .page-numbers .current {
    background: var(--accent-orange);
    color: var(--pure-white);
    border-color: var(--accent-orange);
}

/* No News Message */
.no-news-message {
    text-align: center;
    padding: var(--space-xxl);
    color: var(--text-gray);
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero--news .hero-container {
        padding: 0 40px;
    }
    
    .news-archive-section .container {
        padding: 0 40px;
    }
    
    .news-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .hero--news {
        height: auto;
        min-height: 300px;
        padding: var(--space-xl) 0;
    }
    
    .hero--news .hero-container {
        padding: 0 20px;
    }
    
    .hero--news .hero-title {
        font-size: 2rem;
    }
    
    .news-archive-section .container {
        padding: 0 20px;
    }
    
    .news-archive-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .news-archive-item {
        min-height: 250px;
    }
}
