@import 'index.css'; /* Puxa todo o estilo global, header, footer e menu que já temos no index */

.page-title-section { background-color: var(--rc-black); color: var(--rc-white); padding: 60px 0; text-align: center; }
.page-title-section h1 { font-size: 3.5rem; }
.news-portal { padding: 60px 20px; }
.featured-article { background: var(--rc-white); margin-bottom: 60px; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.featured-article img { width: 100%; display: block; }
.featured-article .article-content { padding: 30px; }
.featured-article .category { background: var(--rc-blue); color: var(--rc-white); padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }
.featured-article h2 { font-size: 2.5rem; margin: 20px 0; }
.featured-article p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 20px; }
.read-more { font-weight: 700; color: var(--rc-blue); text-decoration: none; }
.article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.article-card { background: var(--rc-white); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.article-card img { width: 100%; height: 200px; object-fit: cover; }
.article-card .article-content { padding: 20px; }
.article-card .category { font-size: 0.75rem; font-weight: 700; color: var(--rc-blue); text-transform: uppercase; }
.article-card h3 { font-size: 1.25rem; margin-top: 10px; }

@media (max-width: 768px) {
    .page-title-section h1 { font-size: 2.5rem; }
    .featured-article h2 { font-size: 1.8rem; }
}