/* Estilos para Single Post (Extraído de single.php) */

/* Breadcrumbs mais discretos */
.evte-breadcrumbs {
    font-size: 12px;
    color: #999;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.evte-breadcrumbs a {
    color: #999;
    text-decoration: none;
}

.evte-breadcrumbs a:hover {
    color: #666;
}

.evte-breadcrumbs .separator {
    margin: 0 8px;
    color: #ccc;
}

.evte-breadcrumbs .current-item {
    color: #666;
}

/* 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: left;
    margin-bottom: 30px;
}

.entry-category {
    font-size: 13px;
    font-weight: 700;
    color: #00b300;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.entry-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: #333;
}

.entry-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-meta .meta-author strong {
    color: #333;
    font-weight: 700;
}

.entry-meta .meta-separator {
    color: #999;
    margin: 0 5px;
}

.entry-meta .meta-date {
    color: #666;
}

.entry-meta .meta-reading-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-meta .meta-reading-time svg {
    width: 14px;
    height: 14px;
}

.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: 2px;
        border-radius: 0; /* Remove bordas arredondadas no mobile */
        margin-bottom: 0;
    }
    
    .entry-title {
        font-size: 28px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .related-posts .posts-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Header sem margens no mobile (igual à home) */
    .site-header .container {
        padding: 0 20px;
    }
    
    .header-brand .container {
        padding: 0 20px;
    }
    
    /* Content area sem padding lateral no mobile */
    .content-area {
        padding: 20px;
    }
}
