.blog-header-menu {
    height: 90px;
    background-color: var(--primary-color);
}

.blog-sidebar {
    background-color: var(--primary-color);
    min-height: 100vh;
    padding: 0;
}

.blog-content {
    padding: 2rem;
}

.blog-banner {
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.blog-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.blog-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.blog-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.blog-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-action {
    margin-top: 2rem;
}

.blog-meta {
    padding: 2rem;
    color: #666;
}

.blog-date {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.blog-date i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Estilos para posts sugeridos */
.suggested-posts {
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.suggested-post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.suggested-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.suggested-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

@media (max-width: 767.98px) {
    .blog-sidebar {
        min-height: 20px;
        height: 20px;
    }
    
    .blog-banner {
        height: 300px;
    }
    
    .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-meta {
        padding: 1rem 0;
    }
    
    .suggested-posts .col-md-6 {
        margin-bottom: 1rem;
    }
}