/* ===== HERO SECTION WRAPPER ===== */
.inner_hero_section {
    position: relative;
    width: 100%;
    height: 546px;
    padding: 100px 0;
    overflow: hidden;
    background-color:var(--gl-button-bg);
}
.inner_hero_section h1, .inner_hero_section p, .breadcrumbs_wrapper a, .breadcrumbs_wrapper p, .breadcrumb_last{
    color: var(--gl-button-color);
}
/* ===== GRID LAYOUT ===== */
.inner_hero_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: var(--gl-max-width, 1350px);
    margin: 0 auto;
    width:100%;
}

/* ===== LEFT COLUMN (CONTENT) ===== */
.hero_content_cell {
    padding: 0 60px;
}

.innerpage_hero_headline {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.inner_hero_text {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Divider Line */
.line_div {
    width: 80px;
    height: 3px;
    margin-bottom: 30px;
}

.line_div.light_green {
    background-color: var(--gl-button-color); 
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs_wrapper {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumbs_wrapper a {
    text-decoration: none;
}

.breadcrumbs_wrapper a:hover {
    text-decoration: underline;
}

/* ===== RIGHT COLUMN (IMAGE) ===== */
.hero_img_cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.innerpage_placement_div {
    width: 100%;
}

.inner_hero_img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .inner_hero_grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero_content_cell {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .innerpage_hero_headline {
        font-size: 2.4rem;
    }

    .inner_hero_text {
        font-size: 1rem;
    }
}
