.sub-hero-container {
    width: 100%;
    height: 189px; /* 디자이너 의도: 172px 컨텐츠 + 17px 패딩 */
    /* height: 172px; */ 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    background-color: #2c3e50;
    padding-bottom: 17px;
}

@media (max-width: 1300px) {
    .sub-hero-container {
        align-items: center;
        padding-bottom: 0;
    }
}

.sub-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/hero-notice-bg.png') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

/* Group Specific Backgrounds */
.sub-hero-container.intro .sub-hero-bg {
    background-image: url('/images/sub-here-top-bg.png');
}

.sub-hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    color: #fff;
    width: 100%;
    max-width: 1200px;
    padding-left: 290px;
    box-sizing: border-box;
}

.sub-hero-content .sub-hero-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sub-hero-content .sub-hero-breadcrumb {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* gap: 5px; */
}

@media (max-width: 1300px) {
    .sub-hero-content {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }

    .sub-hero-content .sub-hero-breadcrumb {
        justify-content: center;
    }
}