/*
Theme Name: Brasil do Trecho
Theme URI: https://brasildotrecho.com.br
Description: Tema WordPress de alta performance para portais de notícias, otimizado para Google Discover, News e Core Web Vitals. Inspirado no FeedNews v3.
Version: 1.1.0
Author: Lovable
Text Domain: brasildotrecho
*/

:root {
    --header-background-color: #101215;
    --footer-background-color: #101215;
    --primary-color: #dd3333;
    --text-color: #333;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    background-color: var(--bg-white);
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 18px;
}

/* Header & Menu */
header#header {
    background-color: var(--header-background-color);
    border-radius: 0 0 18px 18px;
    margin-bottom: 12px;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
}

.site-branding .site-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.site-branding a {
    color: #fff;
    text-decoration: none;
}

/* Grid & Posts */
.news-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    padding: 20px 0;
}

.post-card {
    grid-column: span 12;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .post-card {
        grid-column: span 6;
    }
}

@media (min-width: 1024px) {
    .post-card {
        grid-column: span 4;
    }
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.post-content h2 {
    font-size: 20px;
    line-height: 1.3;
    margin: 12px 0 8px;
    font-weight: 700;
}

.post-content a {
    color: #101215;
    text-decoration: none;
}

.post-content a:hover {
    color: var(--primary-color);
}

.post-meta {
    font-size: 14px;
    color: #7a7a7a;
    font-weight: 600;
}

/* Sidebar / Ad Sections */
.sidebar {
    grid-column: span 12;
}

@media (min-width: 1024px) {
    .site-main .container {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }
}

/* Footer */
footer#colophon {
    background-color: var(--footer-background-color);
    color: #fff;
    padding: 48px 0;
    margin-top: 40px;
    text-align: center;
}

/* Single Post */
.single-post .entry-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.entry-content {
    font-size: 18px;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5em;
}
