/* 고객센터 전용 게시판 스킨 */
:root{
  --gcb-blue:#67b8ee;
  --gcb-deep:#0655ac;
  --gcb-mint:#20c8c9;
  --gcb-text:#2b2f35;
  --gcb-muted:#7d858f;
  --gcb-line:#eceff2;
  --gcb-notice:#fff4f8;
}
.gcb-shell,
.gcb-wrap{
  width:min(1180px,calc(100% - 36px));
  margin:0 auto;
}
.gcb-hero{
  min-height:320px;
  background:
    linear-gradient(100deg,rgba(30,204,196,.95),rgba(13,164,210,.95)),
    url("/images/sub_visual.jpg") center/cover no-repeat;
  color:#fff;
  font-family:"Noto Sans KR","Malgun Gothic",Arial,sans-serif;
}
.gcb-hero__grid{
  min-height:320px;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:40px;
}
.gcb-hero__copy{
  text-align:center;
}
.gcb-hero__copy h1{
  margin:0;
  font-size:38px;
  letter-spacing:-.05em;
}
.gcb-hero__copy p{
  margin:13px 0 0;
  font-size:15px;
  line-height:1.7;
}
.gcb-hero__visual{
  display:flex;
  justify-content:center;
}
.gcb-image-slot{
  display:grid;
  place-items:center;
  align-content:center;
  gap:6px;
  border:1px dashed rgba(255,255,255,.7);
  border-radius:12px;
  background:rgba(255,255,255,.08);
}
.gcb-image-slot--hero{
  width:min(520px,100%);
  aspect-ratio:520/250;
}
.gcb-image-slot small{
  opacity:.75;
}
.gcb-tabs{
  display:flex;
  justify-content:center;
  gap:34px;
  min-height:58px;
  align-items:center;
  border-bottom:1px solid var(--gcb-line);
  background:#fff;
  font-family:"Noto Sans KR","Malgun Gothic",Arial,sans-serif;
}
.gcb-tabs a{
  position:relative;
  color:#5f6670;
  font-size:14px;
  text-decoration:none;
}
.gcb-tabs a.is-active{
  color:#111;
  font-weight:900;
}
.gcb-tabs a.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-18px;
  height:3px;
  background:var(--gcb-blue);
}
.gcb-wrap{
  padding:72px 0 110px;
  color:var(--gcb-text);
  font-family:"Noto Sans KR","Malgun Gothic",Arial,sans-serif;
}
.gcb-list-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}
.gcb-list-head p{
  margin:0;
  color:#6f7782;
  font-size:13px;
}
.gcb-list-head p span{
  margin-left:6px;
}
.gcb-list-tools{
  display:flex;
  gap:7px;
}
.gcb-icon-btn{
  display:inline-flex;
  min-height:34px;
  align-items:center;
  padding:0 10px;
  border:1px solid #d9dee4;
  border-radius:5px;
  color:#68717c;
  font-size:11px;
  text-decoration:none;
}
.gcb-table-wrap{
  overflow-x:auto;
}
.gcb-table{
  width:100%;
  border-collapse:collapse;
  table-layout:fixed;
}
.gcb-table caption{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}
.gcb-table th{
  height:52px;
  border-top:1px solid var(--gcb-line);
  border-bottom:1px solid var(--gcb-line);
  color:#5f6772;
  font-size:13px;
  font-weight:700;
}
.gcb-table td{
  height:62px;
  padding:0 14px;
  border-bottom:1px solid var(--gcb-line);
  color:#555d68;
  font-size:13px;
  text-align:center;
}
.gcb-table tr.is-notice{
  background:var(--gcb-notice);
}
.gcb-col-check{width:40px}
.gcb-col-num{width:82px}
.gcb-col-name{width:120px}
.gcb-col-hit{width:76px}
.gcb-col-date{width:90px}
.gcb-subject{
  text-align:left!important;
}
.gcb-subject a{
  color:#2e343c;
  font-weight:600;
  text-decoration:none;
}
.gcb-notice-badge{
  color:#ff3e73;
  font-weight:900;
}
.gcb-new{
  display:inline-grid;
  width:18px;
  height:18px;
  place-items:center;
  margin-left:5px;
  border-radius:50%;
  background:#ff507b;
  color:#fff;
  font-size:10px;
}
.gcb-comment-count{
  margin-left:5px;
  color:#318ee7;
}
.gcb-mobile-meta{
  display:none;
}
.gcb-empty{
  height:180px!important;
  color:#8a929c!important;
}
.gcb-list-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-top:16px;
}
.gcb-pagination .pg_wrap{
  display:block;
}
.gcb-pagination .pg_page,
.gcb-pagination .pg_current{
  display:inline-flex;
  min-width:32px;
  height:32px;
  align-items:center;
  justify-content:center;
  margin-right:3px;
  border:1px solid #e1e5ea;
  border-radius:4px;
  color:#666;
  text-decoration:none;
}
.gcb-pagination .pg_current{
  border-color:#4a91f2;
  background:#4a91f2;
  color:#fff;
}
.gcb-btn{
  display:inline-flex;
  min-height:42px;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border:0;
  border-radius:5px;
  font-size:13px;
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
}
.gcb-btn--primary{
  background:#3c8df5;
  color:#fff;
}
.gcb-btn--gray{
  background:#90959b;
  color:#fff;
}
.gcb-search{
  margin-top:26px;
  border:0;
  padding:0;
}
.gcb-search legend{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
}
.gcb-search form{
  display:flex;
  justify-content:flex-end;
  gap:7px;
}
.gcb-search select,
.gcb-search input{
  height:42px;
  border:1px solid #d9dee4;
  border-radius:5px;
  padding:0 12px;
  background:#fff;
}
.gcb-search input{
  width:260px;
}
.gcb-search button{
  min-width:70px;
  border:0;
  border-radius:5px;
  background:#4b91ed;
  color:#fff;
  font-weight:900;
}
.gcb-write-wrap{
  max-width:1180px;
}
.gcb-write-card{
  display:grid;
  gap:18px;
}
.gcb-options{
  display:flex;
  gap:14px;
  align-items:center;
}
.gcb-field{
  display:grid;
  gap:8px;
}
.gcb-field label{
  font-size:13px;
  font-weight:900;
}
.gcb-field label span{
  color:#ff4b72;
}
.gcb-input{
  width:100%;
  height:48px;
  padding:0 13px;
  border:1px solid #cfd5dc;
  border-radius:4px;
  font:inherit;
}
.gcb-editor{
  min-height:360px;
}
.gcb-editor iframe,
.gcb-editor textarea{
  width:100%!important;
}
.gcb-file-row{
  display:grid;
  grid-template-columns:120px 1fr auto;
  gap:10px;
  align-items:center;
  padding:12px 14px;
  border:1px solid #d8dde3;
}
.gcb-file-row label{
  font-size:12px;
  font-weight:900;
}
.gcb-write-actions{
  display:flex;
  justify-content:flex-end;
  gap:8px;
  margin-top:22px;
}
.gcb-view__head{
  padding-bottom:25px;
  border-bottom:1px solid var(--gcb-line);
}
.gcb-view__category{
  color:#2d9ee4;
  font-size:13px;
  font-weight:900;
}
.gcb-view__head h2{
  margin:10px 0 12px;
  font-size:28px;
}
.gcb-view__meta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  color:#808892;
  font-size:12px;
}
.gcb-view__files{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:15px 0;
  border-bottom:1px solid var(--gcb-line);
}
.gcb-view__files a{
  color:#4b8fdc;
}
.gcb-view__content{
  min-height:300px;
  padding:45px 0;
  line-height:1.8;
}
.gcb-view__content img{
  max-width:100%;
  height:auto;
}
.gcb-view__nav{
  border-top:1px solid var(--gcb-line);
  border-bottom:1px solid var(--gcb-line);
}
.gcb-view__nav a{
  display:grid;
  grid-template-columns:80px 1fr;
  padding:16px 0;
  border-bottom:1px solid var(--gcb-line);
  color:#444;
  text-decoration:none;
}
.gcb-view__nav a:last-child{
  border-bottom:0;
}
.gcb-view__actions{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:20px;
}
.gcb-comments{
  margin-top:40px;
}
.gcb-comment{
  padding:18px 0;
  border-bottom:1px solid var(--gcb-line);
}
.gcb-comment header{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
}
.gcb-comment-form{
  margin-top:20px;
}
.gcb-comment-form textarea{
  width:100%;
  min-height:120px;
  margin-bottom:10px;
  padding:12px;
  border:1px solid #d5dae0;
}
.gcb-comment-form__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:10px;
}
.gcb-comment-form__grid input{
  height:42px;
  padding:0 12px;
  border:1px solid #d5dae0;
}
@media(max-width:760px){
  .gcb-shell,
  .gcb-wrap{
    width:min(100% - 24px,1180px);
  }
  .gcb-hero{
    min-height:500px;
  }
  .gcb-hero__grid{
    min-height:500px;
    grid-template-columns:1fr;
    gap:10px;
    text-align:center;
  }
  .gcb-hero__copy{
    padding-top:34px;
  }
  .gcb-hero__copy h1{
    font-size:30px;
  }
  .gcb-hero__visual{
    padding-bottom:24px;
  }
  .gcb-tabs{
    gap:24px;
  }
  .gcb-wrap{
    padding:42px 0 80px;
  }
  .gcb-col-name,
  .gcb-col-hit,
  .gcb-col-date{
    display:none;
  }
  .gcb-col-num{
    width:58px;
  }
  .gcb-table td{
    height:auto;
    min-height:68px;
    padding-top:14px;
    padding-bottom:14px;
  }
  .gcb-mobile-meta{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:7px;
    color:#9198a1;
    font-size:11px;
  }
  .gcb-list-bottom{
    align-items:flex-start;
  }
  .gcb-search form{
    display:grid;
    grid-template-columns:1fr;
  }
  .gcb-search input{
    width:100%;
  }
  .gcb-search button{
    min-height:42px;
  }
  .gcb-file-row{
    grid-template-columns:1fr;
  }
  .gcb-write-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
  }
  .gcb-view__head h2{
    font-size:23px;
  }
  .gcb-view__actions{
    flex-direction:column;
  }
}


/* 1:1 문의 상태 */
.gcb-qa-status,
.gcb-view__status{
  display:inline-flex;
  min-height:24px;
  align-items:center;
  justify-content:center;
  margin-left:8px;
  padding:0 9px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  vertical-align:middle;
}
.gcb-qa-status.is-wait,
.gcb-view__status.is-wait{
  background:#fff0e7;
  color:#e56e1e;
}
.gcb-qa-status.is-done,
.gcb-view__status.is-done{
  background:#eaf8ef;
  color:#2b9850;
}
.gcb-qa-guide{
  display:flex;
  flex-direction:column;
  gap:5px;
  padding:14px 16px;
  border:1px solid #d7eaf8;
  border-radius:8px;
  background:#f3faff;
  color:#3a6480;
}
.gcb-qa-guide strong{
  font-size:13px;
}
.gcb-qa-guide span{
  font-size:12px;
}
.gcb-view__status{
  margin-left:10px;
}
@media(max-width:760px){
  .gcb-qa-status{
    margin-top:7px;
    margin-left:0;
  }
}


/* 1:1 문의 공개 목록 보호 및 관리자 상태 변경 */
.gcb-secret-title{
  color:#343b45;
  font-weight:700;
}
.gcb-admin-status{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin:10px 0 30px;
  padding:18px 20px;
  border:1px solid #dce6ef;
  border-radius:10px;
  background:#f7fafc;
}
.gcb-admin-status>div{
  display:flex;
  flex-direction:column;
  gap:5px;
}
.gcb-admin-status strong{
  font-size:14px;
}
.gcb-admin-status span{
  color:#7b8590;
  font-size:12px;
}
.gcb-admin-status form{
  display:flex;
  gap:8px;
}
.gcb-admin-status select{
  min-width:130px;
  height:42px;
  padding:0 10px;
  border:1px solid #ccd5de;
  border-radius:6px;
  background:#fff;
}
.gcb-admin-status button{
  min-width:88px;
  height:42px;
  border:0;
  border-radius:6px;
  background:#3f8ff2;
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
.gcb-comments__empty{
  padding:28px 18px;
  border-top:1px solid #edf0f3;
  border-bottom:1px solid #edf0f3;
  color:#8a929b;
  text-align:center;
}
.gcb-admin-answer-badge{
  display:inline-flex;
  min-height:22px;
  align-items:center;
  margin-left:6px;
  padding:0 8px;
  border-radius:999px;
  background:#e8f5ff;
  color:#238dcc;
  font-size:10px;
  font-weight:900;
}
.gcb-comment__content{
  line-height:1.75;
}
.gcb-comment footer{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:10px;
}
.gcb-comment footer a{
  color:#737c87;
  font-size:11px;
}
.gcb-comment-form__actions{
  display:flex;
  justify-content:flex-end;
}
@media(max-width:760px){
  .gcb-admin-status{
    align-items:stretch;
    flex-direction:column;
  }
  .gcb-admin-status form{
    display:grid;
    grid-template-columns:1fr 1fr;
  }
}
