/* Blog Hero Section */
.ehs-blog-hero {
    position: relative;
    color: var(--ehs-color-light);
    background: var(--ehs-color-dark);
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.ehs-blog-hero__media {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.7));
    background-position: center;
    background-size: cover;
    z-index: 0;
}

.ehs-blog-hero__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.ehs-blog-hero__media-layer {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(71, 85, 105, 0.2) 0%, transparent 55%),
        radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.3) 0%, transparent 60%);
    z-index: 2;
}

.ehs-blog-hero__media-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.ehs-blog-hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.ehs-blog-hero__layout {
    max-width: 800px;
}

.ehs-blog-hero__copy {
    text-align: left;
}

.ehs-blog-hero__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
}

.ehs-blog-hero__date,
.ehs-blog-hero__read-time,
.ehs-blog-hero__author {
    position: relative;
}

.ehs-blog-hero__date::after,
.ehs-blog-hero__read-time::after {
    content: '•';
    margin-left: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.ehs-blog-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--ehs-color-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ehs-blog-hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 600px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ehs-blog-hero {
        min-height: 50vh;
        padding: 3rem 0;
    }
    
    .ehs-blog-hero__meta {
        font-size: 0.8rem;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .ehs-blog-hero__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .ehs-blog-hero__subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ehs-blog-hero {
        min-height: 40vh;
        padding: 2rem 0;
    }
    
    .ehs-blog-hero__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .ehs-blog-hero__date::after,
    .ehs-blog-hero__read-time::after {
        display: none;
    }
}