
		:root {
			--primary-color: #0f172a;
			--secondary-color: #1e293b;
			--accent-color: #d97706;
			--text-color: #334155;
			--bg-color: #f8fafc;
			--white: #ffffff;
			--border-color: #e2e8f0;
		}
		body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; }

		body > header { background-color: var(--primary-color); color: var(--white); padding: 1rem 0; border-bottom: 4px solid var(--accent-color); }

		.header-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
		.logo { font-size: 2rem; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; color: var(--white); text-decoration: none; }
		.logo span { color: var(--accent-color); }
		.date-display { font-size: 0.9rem; color: #94a3b8; }
		nav { background-color: var(--secondary-color); padding: 0.5rem 0; }
		nav ul { max-width: 1200px; margin: 0 auto; padding: 0 20px; list-style: none; display: flex; gap: 20px; }
		nav a { color: #e2e8f0; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
		nav a:hover { color: var(--accent-color); }
		main { max-width: 1200px; margin: 2rem auto; padding: 0 20px; min-height: 80vh; }
		.page-title { margin-bottom: 1.5rem; color: var(--primary-color); border-bottom: 2px solid var(--border-color); padding-bottom: 0.5rem; }
		.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; }
		.news-card { background: var(--white); border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
		.news-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
		.card-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
		.category-tag { display: inline-block; padding: 0.25rem 0.75rem; background-color: #eff6ff; color: var(--primary-color); font-size: 0.75rem; font-weight: 700; border-radius: 999px; margin-bottom: 0.75rem; align-self: flex-start; text-transform: uppercase; }
		.news-title { font-size: 1.25rem; font-weight: 700; margin: 0 0 0.75rem 0; color: var(--primary-color); line-height: 1.3; }
		.news-title a { text-decoration: none; color: inherit; }
		.news-excerpt { font-size: 0.95rem; color: #64748b; margin-bottom: 0; flex-grow: 1; }
		.article-container { background: var(--white); padding: 3rem; border-radius: 8px; border: 1px solid var(--border-color); max-width: 800px; margin: 0 auto; }

		.article-header { margin-bottom: 2rem; border-bottom: 1px solid var(--border-color); padding-bottom: 2rem; background: transparent; }

		.article-meta { color: #64748b; font-size: 0.9rem; margin-bottom: 1rem; }
		.article-h1 { font-size: 2.5rem; color: var(--primary-color); line-height: 1.2; margin: 0; }
		.article-body { font-size: 1.125rem; color: #334155; }
		.article-body p { margin-bottom: 1.5rem; }
		.back-link { display: inline-block; margin-top: 2rem; color: var(--secondary-color); text-decoration: none; font-weight: 600; cursor: pointer; }
		.back-link:hover { color: var(--accent-color); }
		footer { background-color: var(--primary-color); color: #94a3b8; text-align: center; padding: 2rem 0; margin-top: 4rem; }
		@media (max-width: 768px) { .news-grid { grid-template-columns: 1fr; } .article-container { padding: 1.5rem; } .article-h1 { font-size: 1.75rem; } nav ul { flex-wrap: wrap; gap: 10px; } }
