/* Services Archive Hero Styles */
.ehs-services-hero {
    padding: 120px 0 100px;
    position: relative;
    color: var(--ehs-color-light);
    background: var(--ehs-color-dark);
    overflow: hidden;
}

.ehs-services-hero .ehs-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-services-hero .ehs-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-services-hero .ehs-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-services-hero .ehs-hero__media-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.ehs-services-hero .ehs-hero__content {
    position: relative;
    z-index: 3;
}

.ehs-services-hero__layout {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ehs-services-hero__title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    margin: 0 0 24px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ehs-services-hero__subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 600px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.ehs-services-hero__features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.ehs-services-hero__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.ehs-services-hero__feature svg {
    width: 16px;
    height: 16px;
    color: var(--ehs-color-primary);
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ehs-services-hero {
        padding: 80px 0 60px;
    }
    
    .ehs-services-hero__features {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }
    
    .ehs-services-hero__subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ehs-services-hero {
        padding: 60px 0 40px;
    }
    
    .ehs-services-hero__feature {
        font-size: 13px;
    }
    
    .ehs-services-hero__feature svg {
        width: 14px;
        height: 14px;
    }
}