/* ============================================================
   INNER HERO
   ============================================================ */
.inner-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    padding: 120px var(--hero-padding-x) 80px;
    overflow: hidden;
}

.inner-hero--centered {
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 55vh;
}

.inner-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%) saturate(80%);
    z-index: 0;
}

.inner-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.inner-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.inner-hero--centered .inner-hero__content {
    margin: 0 auto;
}

.inner-hero__title {
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.9;
    color: var(--color-white);
    margin-bottom: 24px;
}

.inner-hero__desc {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-nobel);
    max-width: 700px;
}

.inner-hero--centered .inner-hero__desc {
    margin: 0 auto;
}

/* BREADCRUMBS */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--color-nobel);
    opacity: 0.5;
    line-height: 0.9;
    z-index: 99;
}

.breadcrumbs a {
    color: var(--color-nobel);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--color-white);
}

.breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .inner-hero {
        padding: 140px 24px 60px;
        min-height: 60vh;
    }

    .inner-hero--centered {
        padding: 140px 24px 80px;
    }
    
    .breadcrumbs {
   
    font-size: 10px;
    
}
}