﻿/* ===== POST BANNER E CONTEÚDO ===== */
.post-banner-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background-color: var(--bege-medio);
    border-radius: 15px;
    overflow: hidden;
}

.post-banner-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.post-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}

.post-header {
    padding: 40px 0;
    border-bottom: 1px solid var(--bege-medio);
    margin-bottom: 30px;
}

.post-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cinza-escuro);
    line-height: 1.2;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .meta-item i {
        color: var(--verde-pastel);
    }

.post-content {
    line-height: 1.8;
    font-size: 1.15rem;
    color: #444;
}

.post-article p {
    margin-bottom: 1.5rem;
}

/* ===== POST IMAGES ===== */
.post-image-container {
    width: 100%;
    margin: 30px 0;
}

.img-post-padrao {
    width: 100%;
    max-width: 900px;
    height: 450px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .img-post-padrao {
        height: 250px;
    }
}


