/**
 * bc_skins/bc_2 스킨 스타일
 * 원형 도트(●) 구분자 스타일
 *
 * 공통 레이아웃 CSS는 stb_layout.css에서 담당
 * 공통 색상/폰트 CSS는 style.css에서 담당
 * 여기는 bc_2 전용 오버라이드만 작성
 */

/* 구분자: / 텍스트 숨기고 원형 도트로 대체 */
.stb_breadcrumb .sep {
    font-size: 0;
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.stb_breadcrumb .sep::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.35;
}

/* ★ 홈 아이콘 크기 */
.stb_breadcrumb .homego {
    width: 32px !important;
    height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0;
}
.stb_breadcrumb .homego img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}
