/* Estilos específicos para a página de post */
.post-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.post {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    display: none; /* Posts começam ocultos */
}

.post:target {
    display: block; /* Mostra apenas o post alvo */
}

.post-header {
    position: relative;
}

.post-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.post-meta {
    margin: 1rem 0;
    padding: 0 2rem;
}

.post-meta .category {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 1rem;
}

.post-meta .date {
    color: #666;
}

.post-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin: 1rem 0;
    padding: 0 2rem;
}

.post-body {
    padding: 2rem;
}

.post-body h2 {
    color: #333;
    margin: 2rem 0 1rem;
}

.post-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.post-body li {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Se nenhum artigo estiver selecionado, mostra o primeiro */
:root:not(:has(.post-content:target)) .post-content:first-of-type {
    display: block;
}

/* Responsividade */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-header img {
        height: 300px;
    }
}