/* Layout Global do Portal */
.portal-wrapper, .single-article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}

/* 1ª Dobra: Hero Grid */
.portal-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 45px;
}

.hero-main-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.hero-media-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    background-color: #1a1a1a;
}

.hero-media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c4170c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-main-content {
    padding: 20px;
}

.live-placar {
    display: inline-block;
    background: #111;
    color: #ffd700;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.hero-main-content h2 {
    font-size: 26px;
    margin: 0 0 10px 0;
    line-height: 1.25;
}

.hero-main-content h2 a {
    color: #111;
    text-decoration: none;
}

.hero-main-content h2 a:hover {
    color: #c4170c;
}

.hero-summary {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Coluna Lateral de Destaques */
.hero-side-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-card-item {
    display: flex;
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.side-card-thumb {
    width: 110px;
    height: 75px;
    flex-shrink: 0;
    background: #eaeaea;
    border-radius: 4px;
    overflow: hidden;
}

.side-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-category {
    font-size: 11px;
    font-weight: 700;
    color: #06aa48;
    text-transform: uppercase;
}

.side-card-body h3 {
    font-size: 14px;
    line-height: 1.3;
    margin: 3px 0 6px 0;
}

.side-card-body h3 a {
    color: #222;
    text-decoration: none;
}

.side-card-body time {
    font-size: 11px;
    color: #888;
}

/* Blocos de Editorias */
.portal-editorias-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.editoria-bloco {
    border-top: 2px solid #222;
    padding-top: 15px;
}

.editoria-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.editoria-header h3 {
    font-size: 20px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
}

.editoria-header .ver-mais {
    font-size: 13px;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
}

.editoria-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.bloco-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.bloco-card-link {
    text-decoration: none;
    color: #222;
}

.bloco-card-link img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
}

.bloco-card h4 {
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.bloco-meta {
    font-size: 12px;
    color: #888;
    display: flex;
    gap: 10px;
}

/* Estilos do Post Individual */
.single-article-container {
    max-width: 820px;
}

.article-category {
    font-size: 12px;
    font-weight: 700;
    color: #c4170c;
    text-transform: uppercase;
}

.article-title {
    font-size: 34px;
    line-height: 1.2;
    margin: 10px 0 15px 0;
}

.article-meta-bar {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
}

.article-featured-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.article-body {
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
}

.article-tags {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 8px;
    align-items: center;
}

.tag-badge {
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #444;
}

/* Responsividade */
@media (max-width: 850px) {
    .portal-hero {
        grid-template-columns: 1fr;
    }
}