.single-post {
    padding: 2rem 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.entry-meta {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-left: 4px solid #e5ad00;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #666;
}

.entry-meta span {
    display: block;
    margin-bottom: 0.5rem;
}

.entry-meta span:last-child {
    margin-bottom: 0;
}

.entry-meta a {
    color: #e5ad00;
    text-decoration: none;
    font-weight: 500;
}

.entry-meta a:hover {
    text-decoration: underline;
}

.entry-featured-image {
    margin-bottom: 2rem;
    text-align: center;
}

.featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.entry-content blockquote {
    border-left: 4px solid #e5ad00;
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

/* Navegação entre Posts */
.post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.nav-previous,
.nav-next {
    flex: 1;
    max-width: 48%;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-previous a:hover,
.nav-next a:hover {
    background-color: #e5ad00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 173, 0, 0.3);
}

.nav-direction {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: #e5ad00;
}

.nav-previous a:hover .nav-direction,
.nav-next a:hover .nav-direction {
    color: #fff;
}

.nav-title {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.nav-next {
    text-align: right;
}

/* Responsividade */
@media (max-width: 768px) {
    .entry-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .single-post {
        padding: 1rem 0;
    }
    
    .entry-content {
        font-size: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-previous,
    .nav-next {
        max-width: 100%;
    }
    
    .nav-next {
        text-align: left;
    }
}
