/* === Página de Post === */
.post-section {
    padding: 20px 8px;
    font-family: 'Inter', sans-serif;
    background: #f9f9f9;
    color: #333;
}

.post-section .container {
    max-width: 800px;
    margin: auto;
    padding: 0 0px;
}

.post-article {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    padding: 30px;
}

.post-thumb {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.post-title {
    font-size: 2rem;
    color: #004aad;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 25px;
}

.post-content {
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.post-share {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 20px;
}

.post-share span {
    font-weight: bold;
    margin-right: 10px;
}

.post-share a {
    margin-right: 12px;
    color: #004aad;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.post-share a:hover {
    color: #0066cc;
}

.post-back {
    margin-top: 25px;
}

.post-back a {
    color: #004aad;
    font-weight: 600;
    text-decoration: none;
}

.post-back a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .post-title {
        font-size: 1.6rem;
    }
    .post-content {
        font-size: 1rem;
    }
}
