/* 서브페이지 공통 스타일 */
.container {
    max-width: 1350px;
    margin: 0 auto;
    /* padding: 0 15px; */
}

/* 서브페이지 상단 배너 */
.sub-visual {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.sub-visual-img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
}

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

.title-box {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding-top: 40px;
}

.main-title {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1;
}

.sub-title {
    color: #fff;
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    margin: 0;
    opacity: 1;
    word-break: keep-all;
}

/* 브레드크럼 */
.breadcrumb {
    background: #fff;
    padding: 33px 0;
    border: 0;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.breadcrumb li {
    position: relative;
    padding: 0 0px;
    color: #888;
    font-size: 13px;
}

.breadcrumb li:first-child {
    padding-left: 0;
}


.breadcrumb li:last-child {
    color: var(--text-light);
    padding-right: 0;
}


.breadcrumb a {
    color: #999;
    text-decoration: none;
}

.breadcrumb i {
    font-size: 14px;
    color: #888;
}

.breadcrumb li .arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    border-radius: 1px;
    transform: rotate(45deg);
    margin: 0 20px 2px 20px;
    vertical-align: middle;
  }
  
  .breadcrumb li {
    position: relative;
    padding: 0 0px;
    color: #888;
    font-size: 16px;
   }
/* 반응형 스타일 */
@media screen and (max-width: 768px) {
    .sub-visual {
        height: 140px;
    }
    .about_title{
        margin-bottom: 40px !important;
    }

    .about_tab ul{
        
justify-content: space-between;
    }

    .title-box {
        padding-top: 0px;
    }

    .main-title {
        font-size: 32px;
        margin-bottom: 0px;
    }

    .sub-title {
        font-size: 14px;
        padding: 0 20px;
        display: none;
    }

    .breadcrumb {
        padding: 20px 16px;
    }

    .breadcrumb li {
        font-size: 11px;
        padding: 0 6px;
    }

    .breadcrumb li .arrow{
        /* width: 4px; */
        /* height: 4px; */
        margin: 0 14px 0 0;
    }

    .breadcrumb li img{
        width: 14px;
        height: 14px;
    }
} 