/* Single Post Featured Image Header */
.single-post-header {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-background-attachment: fixed;
    -moz-background-attachment: fixed;
    -o-background-attachment: fixed;
    background-attachment: fixed;
    min-height: 400px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: white;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.post-header-content {
    animation: slideInUp 0.6s ease;
}

.post-header-content h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.post-meta {
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.post-meta i {
    margin-right: 0.5rem;
}

/* Responsive Single Post Header */
@media (max-width: 992px) {
    .single-post-header {
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .post-header-content h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .single-post-header {
        min-height: 300px;
        padding: 2rem 0;
    }
    
    .post-header-content h1 {
        font-size: 1.75rem;
    }
    
    .post-meta {
        font-size: 0.85rem;
        display: block;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .single-post-header {
        min-height: 250px;
        padding: 1.5rem 0;
    }
    
    .post-header-content h1 {
        font-size: 1.5rem;
    }
    
    .post-meta {
        font-size: 0.8rem;
    }
}
