/* ===== Archive News CSS ===== */

.archive-news .page-header { text-align: center; margin-bottom: 2rem; }

.archive-news .page-title { font-size: 2.25rem; color: var(--accent); }

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; padding: 0 1rem 2rem; }

.news-card { background: var(--bg-card); border-radius: var(--card-radius); overflow: hidden; box-shadow: 0 0 8px rgba(0, 0, 0, 0.4); transition: transform 0.2s ease, box-shadow 0.2s ease; text-align: center; }

.news-card:hover { transform: translateY(-5px); box-shadow: 0 0 14px rgba(0, 255, 102, 0.2); }

.news-card a { color: var(--text-light); text-decoration: none; display: block; padding: 1rem; }

.news-card .news-thumb img { width: 100%; height: auto; object-fit: cover; border-bottom: 1px solid #333; }

.news-card .news-title { font-size: 1rem; margin-top: 1rem; color: var(--text-light); }

@media (max-width: 768px) { .news-card .news-title { font-size: 0.95rem; } }

