/* BASIC css start */
/* 띠배너 추가됨에 따라 헤더 스타일 추가 수정 */
#header.scroll #topbanner{transform: translateY(0%);max-height: 45px;opacity: 0;pointer-events: none;}
#header.scroll.click.show .open-menu-wrap, .open-menu-wrap[aria-hidden="false"] {top:105px !important;}
#header.scroll.click.show.is-fixed .open-menu-wrap, .open-menu-wrap[aria-hidden="false"] {top:60px !important;}

#topbanner {
    transition: transform .35s ease, max-height .35s ease, opacity .25s ease;
    overflow: hidden;    /* 높이가 줄어들 때 내용물이 삐져나오지 않게 함 */
    max-height: 200px;   /* 실제 배너 높이보다 넉넉하게 설정 */
    opacity: 1;
}
/* 스크롤이 내려갔을 때 배너를 숨김 */
#header.is-fixed #topbanner {
    max-height: 0 !important;   /* 높이를 0으로 줄임 */
    opacity: 0 !important;      /* 투명하게 만듦 */
    padding-top: 0 !important;  /* 패딩이 있다면 이것도 제거 */
    padding-bottom: 0 !important;
    margin: 0 !important;       /* 여백 제거 */
}
/* 헤더를 상단에 고정하고 싶다면 */
#header.is-fixed {
   /* position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;*/
}
/* 모바일: 띠배너 추가됨에 따라 헤더 스타일 추가 수정 */
@media (max-width: 768px) {
    .header-container--md.scroll {
        top: 45px !important;
        z-index: 9999;
    }
    .header-container--md.scroll.is-fixed {
        top: 0px !important;
    }
    .header-container--md.scroll.is-fixed + .m-search-area, .side-menu-wrap.active {
        top: 50px!important;
        padding-top: 0;
    }
    .header-container--md.scroll + .m-search-area, .side-menu-wrap.active {
        top: 94px!important;
    }
    .header-container--md {z-index: 9999;}
    .header-container--md.scroll.is-fixed {top: 45px;}
    .scroll.is-fixed + .side-menu-wrap.active {top: 46px !important;}
    #community.detail-top {margin-top: 95px!important;}
    .side-menu-wrap {z-index: 100 !important;}
}

.container {
    margin-top: 185px;
}


/* 로그인 정보 찾기 */
.find-wrap { max-width: 440px; width:100%; margin:0 auto; padding-bottom: 120px; }
.find-wrap .form-textfield { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; }
.find-wrap .txt-method { padding-top: 20px; color: var(--cw-color-80); font-size: .875rem; }
.find-wrap .form-textfield input { width: 100%; }
.find-wrap .form-check { padding-top: 8px; }
.find-wrap .form-check .form-check-label { font-size: .875rem; } 
.find-wrap .btn-find { display: flex; flex-direction: column; gap: 8px; padding: 24px 0; }

/* 회원인증 */
.auth-wrap { margin: 20px 0 40px; padding: 40px 0; border-top: 1px solid var(--cw-color-30); border-bottom: 1px solid var(--cw-color-30); }
.auth-wrap .txt-wrap { font-size: .875rem; text-align: center; }
.auth-wrap .txt-wrap strong { font-weight: 600; }
.auth-wrap .txt-wrap p { color: var(--cw-color-80); }
.auth-wrap .btn-auth { display: flex; gap: 12px; align-items: center; justify-content: center; margin-top: 24px; text-align: center; }
.auth-wrap .btn-auth a { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 92px; height: 92px; border:1px solid var(--cw-color-30); border-radius: var(--cw-border-radius); text-decoration: none; }
.auth-wrap .btn-auth span { display: inline-block; width: 36px; height: 36px; }
.auth-wrap .btn-auth span img { max-width: 100%; height: auto; }
.auth-wrap .btn-auth p { color: var(--cw-color-80); font-size: .875rem; }
.btn-auth { display: flex; align-items: center; justify-content: center; }
.btn-auth .btn { margin: 40px 0; width: 300px; }
/* BASIC css end */

