.page-header {
    text-align: center;
    padding: 8rem 2rem 3rem;
}

.page-header h1 {
    font-family: var(--font-mc);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-family: var(--font-body);
    color: var(--text-dim);
    font-size: 1.05rem;
}

.news-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 140, 26, 0.04);
    border: 1px solid rgba(255, 140, 26, 0.08);
    border-radius: 4px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.news-item:hover {
    background: rgba(255, 140, 26, 0.08);
    border-color: rgba(255, 140, 26, 0.15);
}

.news-item.featured {
    border-color: rgba(255, 80, 80, 0.25);
    background: rgba(255, 80, 80, 0.06);
}

.news-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 120px;
    flex-shrink: 0;
}

.news-meta time {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 600;
    white-space: nowrap;
}

.news-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

.tag-release {
    background: rgba(255, 140, 26, 0.15);
    color: var(--accent);
}

.tag-security {
    background: rgba(255, 80, 80, 0.2);
    color: #ff6666;
}

.tag-announcement {
    background: rgba(255, 224, 102, 0.15);
    color: var(--accent-yellow);
}

.tag-feature {
    background: rgba(180, 130, 255, 0.15);
    color: #d4b8ff;
}

.tag-fun {
    background: rgba(100, 220, 180, 0.15);
    color: #7cecc6;
}

.news-body h2 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.news-body p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.footer-contact {
    margin-top: 0.5rem;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-contact i {
    color: var(--accent);
    margin-right: 0.3rem;
}

@media (max-width: 600px) {
    .news-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .news-meta {
        flex-direction: row;
        align-items: center;
        min-width: unset;
    }
}
