/* News Page */

.news-page {
    padding: 8rem 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.news-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.news-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.news-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.news-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    background: rgba(42, 42, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.news-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.news-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.news-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.news-item-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.news-item-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.news-item-category {
    padding: 0.25rem 0.75rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-item-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.news-item-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .news-page {
        padding: 6rem 1.5rem 3rem;
    }

    .news-hero h1 {
        font-size: 2.5rem;
    }

    .news-item {
        padding: 1.5rem;
    }

    .news-item-title {
        font-size: 1.5rem;
    }

    .news-item-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
