@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Oswald:wght@400;500;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary-color: #1565C0;
    --secondary-color: #2196F3;
    --accent-color: #42A5F5;
    --background-color: #E3F2FD;
    --text-color: #0D47A1;
    --light-text: #424242;
    --card-bg: #FFFFFF;
}
body { font-family: 'Roboto', sans-serif; background-color: var(--background-color); color: var(--text-color); line-height: 1.6; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
.header { background-color: var(--primary-color); color: white; padding: 18px 0; border-bottom: 3px solid var(--accent-color); }
.header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.logo h1 { font-family: 'Oswald', sans-serif; font-size: 2.3em; font-weight: 700; letter-spacing: 1px; }
.tagline { font-size: 0.85em; opacity: 0.9; }
.nav { display: flex; gap: 20px; }
.nav-link { color: white; text-decoration: none; font-weight: 500; position: relative; padding: 8px 0; transition: all 0.3s; }
.nav-link::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--accent-color); transition: width 0.3s; }
.nav-link:hover::before { width: 100%; }
.nav-link:hover { color: var(--accent-color); }
.header-actions { display: flex; gap: 10px; }
.search-input { padding: 10px 15px; border: 1px solid var(--accent-color); border-radius: 4px; width: 180px; }
.btn-subscribe { background-color: var(--secondary-color); color: white; border: none; padding: 10px 20px; border-radius: 4px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.btn-subscribe:hover { background-color: var(--accent-color); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.hero-section { margin: 35px 0; }
.featured-article { background-color: var(--card-bg); border-radius: 8px; overflow: hidden; box-shadow: 0 6px 25px rgba(21,101,192,0.15); display: grid; grid-template-columns: 1.5fr 1fr; border: 1px solid var(--accent-color); }
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-content { padding: 30px; }
.Category { background-color: var(--primary-color); color: white; padding: 5px 15px; border-radius: 4px; font-size: 0.8em; font-weight: 600; display: inline-block; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.article-title { font-family: 'Oswald', sans-serif; font-size: 1.8em; margin-bottom: 12px; color: var(--text-color); }
.article-excerpt { color: var(--light-text); margin-bottom: 18px; }
.article-meta { display: flex; gap: 15px; font-size: 0.85em; color: var(--light-text); }
.news-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; margin: 35px 0; }
.section-title { font-family: 'Oswald', sans-serif; font-size: 2em; margin-bottom: 25px; color: var(--primary-color); text-transform: uppercase; letter-spacing: 1px; }
.news-card { background-color: var(--card-bg); border-radius: 6px; overflow: hidden; margin-bottom: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(21,101,192,0.2); }
.card-image { width: 100%; height: 180px; object-fit: cover; }
.card-content { padding: 20px; }
.card-title { font-family: 'Oswald', sans-serif; font-size: 1.2em; margin: 8px 0 10px 0; font-weight: 600; color: var(--text-color); }
.card-excerpt { color: var(--light-text); margin-bottom: 12px; }
.sidebar-section { background-color: var(--card-bg); padding: 22px; border-radius: 6px; margin-bottom: 22px; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.sidebar-title { font-family: 'Oswald', sans-serif; font-size: 1.3em; margin-bottom: 18px; color: var(--primary-color); text-transform: uppercase; letter-spacing: 1px; }
.trending-list { list-style: none; }
.trending-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--background-color); }
.trending-number { background-color: var(--primary-color); color: white; width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; border-radius: 4px; font-weight: 700; font-size: 0.85em; }
.trending-content h4 { font-size: 0.9em; margin-bottom: 4px; font-weight: 600; }
.trending-meta { font-size: 0.75em; color: var(--light-text); }
.sidebar-article { margin-bottom: 18px; }
.sidebar-article img { width: 100%; border-radius: 4px; margin-bottom: 8px; }
.sidebar-article h4 { font-size: 0.95em; margin-bottom: 5px; font-weight: 600; }
.sidebar-meta { font-size: 0.8em; color: var(--light-text); }
.newsletter { background-color: var(--primary-color); color: white; }
.newsletter .sidebar-title { color: white; }
.newsletter p { margin-bottom: 12px; }
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-input { padding: 10px; border: none; border-radius: 4px; }
.newsletter-btn { background-color: var(--accent-color); color: white; border: none; padding: 10px; border-radius: 4px; font-weight: 600; cursor: pointer; }
.categories-section { margin: 50px 0; }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.Category-card { position: relative; border-radius: 6px; overflow: hidden; height: 200px; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.Category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.Category-card:hover img { transform: scale(1.05); }
.Category-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); padding: 20px 15px 15px; color: white; }
.Category-overlay h3 { font-family: 'Oswald', sans-serif; font-size: 1.1em; margin-bottom: 4px; }
.footer { background-color: var(--text-color); color: white; padding: 45px 0 18px; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 35px; }
.footer-column h4 { font-family: 'Oswald', sans-serif; font-size: 1.2em; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-column p { color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.social-links { display: flex; gap: 12px; margin-top: 12px; }
.social-link { color: white; text-decoration: none; transition: color 0.3s; }
.social-link:hover { color: var(--accent-color); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent-color); }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
@media (max-width: 1200px) { .news-grid { grid-template-columns: 1fr; } .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .featured-article { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } }
