/* ==========================================================================
   sector-environmental-health.css — Dedicated Stylesheet for Environmental Health
   ========================================================================== */

/* ============ SECTOR PAGE HERO ============ */
.page-hero {
    position: relative;
    height: 500px;
    background: var(--dark-green);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* --- Hero Background & Overlay --- */
.page-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #1b4332 0%, rgba(27,67,50,0.5) 50%, rgba(0,0,0,0) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px 56px;
    text-align: right;
}

/* --- Breadcrumb Navigation --- */
.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    direction: rtl;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 500;
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-hero__breadcrumb a:hover {
    color: #fff;
}

.page-hero__breadcrumb .crumb {
    color: rgba(255, 255, 255, 0.75);
}

.page-hero__breadcrumb .sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.page-hero__breadcrumb .current {
    color: var(--green-500);
    font-weight: 600;
}

/* --- Hero Title & Subtitle --- */
.page-hero__title {
    font-weight: 900;
    font-size: 60px;
    line-height: 60px;
    color: #fff;
}

.page-hero__subtitle {
    max-width: 576px;
    margin: 12px 0 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 28px;
}

/* ============ SECTOR CONTENT SECTION ============ */
.env-section {
    padding: 64px 0;
}
