/* Estilos para Single Post (Extraído de single.php) */

/* Layout Full Width Override */
.single-post-full-width .content-area { 
    grid-template-columns: 1fr !important; 
}

.single-post {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.entry-header {
    text-align: center;
    margin-bottom: 30px;
}

.entry-title {
    font-size: 36px; /* Mantendo override específico do single, mas respeitando hierarquia base onde possível */
    font-weight: 800;
    line-height: 1.3;
    margin: 20px 0;
    color: #333;
}

.entry-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content h2, .entry-content h3 {
    margin-top: 2em;
    margin-bottom: 1em;
}

.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.post-tags a {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 13px;
    color: #666;
    transition: all 0.3s ease;
}

.post-share {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.post-share .share-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.post-share a {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.share-facebook { background: #3b5998; }
.share-twitter { background: #1da1f2; }
.share-whatsapp { background: #25d366; }
.share-linkedin { background: #0077b5; }
.share-telegram { background: #0088cc; }

.author-box {
    display: flex;
    gap: 20px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    border-radius: 50%;
}

.author-info .author-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.author-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.author-link {
    font-weight: 600;
}

.related-posts {
    margin-top: 40px;
}

.related-posts .section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

@media (max-width: 768px) {
    .single-post {
        padding: 20px;
    }
    
    .entry-title {
        font-size: 28px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .related-posts .posts-grid {
        grid-template-columns: 1fr !important;
    }
}
