/* ===================================================
   GLOBAL HERO COMPONENT
   =================================================== */

/* Hero Wrapper */
.global-hero-wrapper {
    position: relative;
}

/* Yellow background strip - extends beyond hero edges */
.global-hero-yellow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    background: #FCE300;
    z-index: 0;
}

/* Hero Section */
.global-hero {
    position: relative;
    z-index: 1;
    height: min(620px, calc(100vh - var(--header-height) - 40px));
    margin: 0 clamp(24px, 5vw, 90px);
    overflow: hidden;
}

/* Hero wrapper uses same padding as container */
.global-hero-wrapper .global-breadcrumb .container {
    padding-left: 0;
    padding-right: 0;
}

.global-hero-wrapper .global-breadcrumb {
    margin: 0 clamp(24px, 5vw, 90px);
}

.global-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.global-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.global-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-hero-content {
    text-align: center;
    color: #fff;
}

.global-hero-label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #fff;
    margin-bottom: 36px;
}

.global-hero-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    color: #fff;
    margin: 0;
}

/* Hero with blur effect (institutional style) */
.global-hero.hero-blur .global-hero-bg img {
    filter: blur(5px);
}

/* Hero with shadow box (institutional style) */
.global-hero.hero-boxed {
    background: #fff;
    box-shadow:
        -417px 203px 130px 0px rgba(150, 150, 150, 0),
        -267px 130px 119px 0px rgba(150, 150, 150, 0.01),
        -150px 73px 100px 0px rgba(150, 150, 150, 0.05),
        -67px 33px 74px 0px rgba(150, 150, 150, 0.09),
        -17px 8px 41px 0px rgba(150, 150, 150, 0.1);
}

/* Hero with bottom aligned content (news-detail style) */
.global-hero.hero-bottom .container {
    align-items: flex-end;
    padding-bottom: 60px;
}

.global-hero.hero-bottom .global-hero-content {
    text-align: left;
    max-width: 862px;
}

/* ---------------------------------------------------
   GLOBAL BREADCRUMB
--------------------------------------------------- */

.global-breadcrumb {
    padding: 30px 0;
    background: #F8F8F8;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-link {
    font-size: 14px;
    line-height: 14px;
    color: #878787;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: #3F3F3F;
}

.breadcrumb-sep {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-current {
    font-size: 14px;
    line-height: 14px;
    color: #000;
}

/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */

@media (max-width: 768px) {
    .global-hero-yellow {
        height: 320px;
    }

    .global-hero {
        margin: 0 20px;
        height: auto;
        min-height: 400px;
    }

    .global-hero-title {
        font-size: 32px;
        line-height: 40px;
    }
}
