/* News Page Styles */
:root { --space-sm: 10px; --space-md: 20px; --space-lg: 60px; }
.featured-news { background: var(--bg-color); }
.featured-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; }
.featured-image { background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); display: flex; align-items: center; justify-content: center; min-height: 300px; }
.featured-image svg { width: 150px; height: 150px; color: var(--secondary-color); opacity: 0.3; }
.featured-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.featured-label { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-color); color: var(--secondary-color); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; width: fit-content; margin-bottom: 15px; }
.featured-label svg { width: 16px; height: 16px; }
.news-date { color: var(--text-light); font-size: 0.9rem; display: block; margin-bottom: 10px; }
.featured-content h2 { font-size: 1.8rem; margin-bottom: 15px; }
.featured-excerpt { color: var(--text-light); margin-bottom: var(--space-md); line-height: 1.7; }
.news-section { background: var(--bg-secondary); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.news-card { overflow: hidden; padding: 0; }
.news-image { position: relative; height: 200px; background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%); display: flex; align-items: center; justify-content: center; }
.news-image svg { width: 80px; height: 80px; color: var(--primary-color); opacity: 0.5; }
.news-category { position: absolute; top: 15px; left: 15px; background: var(--primary-color); color: var(--secondary-color); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.news-content { padding: 25px; }
.news-title { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.4; }
.news-excerpt { color: var(--text-light); font-size: 0.95rem; margin-bottom: 15px; line-height: 1.6; }
.news-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-color); font-weight: 500; }
.news-link:hover { text-decoration: underline; }
.news-link svg { width: 18px; height: 18px; transition: transform 0.3s; }
.news-link:hover svg { transform: translateX(5px); }
.newsletter-section { background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%); color: var(--text-white); text-align: center; }
.newsletter-content { max-width: 600px; margin: 0 auto; }
.newsletter-content h3 { font-size: 1.8rem; margin-bottom: 10px; }
.newsletter-content p { opacity: 0.9; margin-bottom: var(--space-lg); }
.newsletter-form { display: flex; gap: 15px; max-width: 500px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 15px 20px; border: 2px solid transparent; border-radius: 50px; font-size: 1rem; background: rgba(255,255,255,0.1); color: var(--text-white); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { outline: none; border-color: var(--primary-color); background: rgba(255,255,255,0.15); }
@media (max-width: 768px) {
    .featured-card { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
}