/* Estilos para a página de post individual */
.single-post {
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.post-meta {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 25px;
}

.post-meta span {
    margin: 0 10px;
}

.featured-image {
    width: 62%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.post-content h2, .post-content h3 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-content p, .post-content ul {
    margin-bottom: 20px;
}

.post-content ul {
    padding-left: 20px;
}

.post-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 30px;
}

.tags a {
    background-color: #eee;
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 50px;
    margin-right: 8px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.tags a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Estilos para a seção de comentários */
.comments-section {
    margin-top: 40px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
}

/* Responsividade para a página de post */
@media (max-width: 768px) {
    .single-post {
        padding: 20px;
    }

    .post-title {
        font-size: 1.8em;
    }

    .post-meta {
        font-size: 0.8em;
    }

    .comments-section {
        padding: 20px;
    }
}