/* 디렉터리 인트로 — 좌우 대칭 버튼 (건설업체 ↔ 서비스업체) */

body .tb-dirhead{position:relative}
body .tb-dirhead .tb-inner{max-width:none!important;width:100%!important;
 display:flex!important;flex-direction:column!important;align-items:center!important;
 justify-content:center!important;gap:5px!important;flex-wrap:nowrap!important}
body .tb-dirhead .tb-lead,body .tb-dirhead .tb-sub{text-align:center!important}

body .tb-dirhead .tb-reg-btn{position:absolute!important;right:20px!important;top:50%!important;
 transform:translateY(-50%)!important;margin:0!important}
body .tb-dirhead .tb-reg-btn--l{right:auto!important;left:20px!important}

/* 좌측(찾기) 버튼 — 우측(등록)과 같은 크기, 톤만 다르게 */
body .tb-dirhead .tb-reg-btn--l{
 background:transparent!important;color:var(--ink,#0F1E3F)!important;
 border:1px solid var(--hair,#D5D2C8)!important}
body .tb-dirhead .tb-reg-btn--l:hover{
 background:var(--ink,#0F1E3F)!important;color:var(--cream,#F5F1E8)!important;
 border-color:var(--ink,#0F1E3F)!important}

/* 버튼이 제목을 침범하지 않도록 여백 확보 */
body .tb-dirhead--2 .tb-inner{padding-left:230px!important;padding-right:230px!important}

@media(max-width:1080px){
 body .tb-dirhead--2 .tb-inner{padding-left:200px!important;padding-right:200px!important}
}
@media(max-width:900px){
 body .tb-dirhead .tb-reg-btn{position:static!important;transform:none!important;margin-top:10px!important}
 body .tb-dirhead .tb-reg-btn--l{left:auto!important}
 body .tb-dirhead--2 .tb-inner{padding-left:20px!important;padding-right:20px!important}
 body .tb-dirhead .tb-inner{gap:8px!important}
 body .tb-dirhead--2{display:flex;flex-direction:column;align-items:center;gap:4px}
 /* 좁은 화면에서는 제목 → 등록 버튼 → 서비스 버튼 순서로 세웁니다.
    등록 버튼에 순서를 주지 않았더니 기본값 0 이 되어 제목보다 앞으로 나왔습니다.
    (왼쪽 서비스 버튼을 감춘 뒤로 드러난 문제입니다) */
 body .tb-dirhead--2 .tb-inner{order:1}
 body .tb-dirhead--2 .tb-reg-btn{order:2}
 body .tb-dirhead--2 .tb-reg-btn--l{order:3}
}

/* 디렉터리 구분 제목 — 통합검색 바로 위 */
.tb-dirtitle{margin:0 0 14px!important;padding:0 0 11px;
 border-bottom:2px solid var(--ink,#0F1E3F);
 font-size:19px!important;font-weight:700;letter-spacing:-.01em;
 color:var(--ink,#0F1E3F);line-height:1.3}
