/* ========================================
   GLOBAL PAGE HERO
======================================== */

.page-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: var(--color-white);
    background-color: #111111;
}

.page-hero--internal {
    position: relative;
    min-height: clamp(260px, 26vw, 420px);
    display: flex;
    align-items: center;
}

.page-hero > .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: clamp(28px, 3vw, 44px);
    padding-bottom: clamp(32px, 3.5vw, 48px);
}

/* ========================================
   HERO MEDIA
======================================== */

.page-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-hero__picture,
.page-hero__img {
    display: block;
    width: 100%;
    height: 100%;
}

.page-hero__img {
    object-fit: cover;
    object-position: center center;
}

.page-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(17, 17, 17, 0.84), rgba(17, 17, 17, 0.72)),
        radial-gradient(circle at top right, rgba(214, 154, 59, 0.16), transparent 32%),
        radial-gradient(circle at bottom left, rgba(214, 154, 59, 0.08), transparent 28%);
}

/* ========================================
   CONTENT
======================================== */

.page-hero__content {
    max-width: 760px;
}

.page-hero__title {
    margin: 0 0 0.85rem;
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 2.6vw, 2.45rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.08;
    letter-spacing: var(--letter-spacing-tight);
    color: var(--color-white);
    white-space: normal;
}

.page-hero__text {
    max-width: 620px;
    margin: 0;
    font-size: var(--font-sm);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
}

/* ========================================
   BREADCRUMB
======================================== */

.breadcrumb-nav {
    margin-bottom: 1rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: var(--font-sm);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.74);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    margin-right: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    transition: color 0.25s ease;
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus-visible {
    color: #F2C879;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991.98px) {
    .page-hero--internal {
        min-height: clamp(240px, 32vw, 360px);
    }

    .page-hero > .container {
        padding-top: 60px;
        padding-bottom: 34px;
    }

    .page-hero__title {
        font-size: clamp(1.5rem, 4vw, 2.1rem);
    }

    .page-hero__text {
        max-width: 560px;
        font-size: var(--font-sm);
        line-height: 1.66;
    }
}

@media (max-width: 767.98px) {
    .page-hero--internal {
        min-height: 280px;
    }

    .page-hero > .container {
        padding-top: 56px;
        padding-bottom: 28px;
    }

    .breadcrumb-nav {
        margin-bottom: 0.85rem;
    }

    .breadcrumb-item {
        font-size: var(--font-xs);
    }

    .page-hero__title {
        font-size: clamp(1.35rem, 5.4vw, 1.8rem);
        line-height: 1.12;
    }

    .page-hero__text {
        max-width: 100%;
        font-size: 0.89rem;
        line-height: 1.62;
    }
}

@media (max-width: 479.98px) {
    .page-hero--internal {
        min-height: 250px;
    }

    .page-hero > .container {
        padding-top: 50px;
        padding-bottom: 22px;
    }

    .breadcrumb-nav {
        margin-bottom: 0.75rem;
    }

    .breadcrumb-item {
        font-size: var(--font-xs);
    }

    .page-hero__title {
        font-size: clamp(1.18rem, 6vw, 1.5rem);
    }

    .page-hero__text {
        font-size: 0.86rem;
        line-height: 1.58;
    }
}