/* ── 고객센터 탭 헤더 ── */
.cs-tab-header{display:flex;align-items:center;gap:0;margin-bottom:14px;border:2px solid #e63946;border-radius:6px;overflow:hidden;}
.cs-tab-btn{padding:10px 20px;font-size:13px;font-weight:700;cursor:pointer;text-decoration:none;transition:all .15s;white-space:nowrap;}
.cs-tab-center{background:#e63946;color:#fff;}
.cs-tab-active{background:#fff;color:#e63946;border-left:2px solid #e63946;}
.cs-tab-inactive{background:#fff;color:#555;}
.cs-tab-inactive:hover{background:#fff5f5;color:#e63946;}

/* ── 배너 (white + red 분리형) ── */
.notice-banner {
    display:flex; align-items:center; justify-content:space-between;
    background:#fff; border:1px solid #e8e8e8; border-radius:12px;
    padding:24px 28px; margin-bottom:16px;
    min-height: 140px; position:relative; overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.06);
}
.notice-banner::after {
    content:''; position:absolute; right:0; top:0; bottom:0; width:40%;
    background:linear-gradient(135deg,#e63946 0%,#c0392b 100%);
    clip-path:polygon(14% 0,100% 0,100% 100%,0 100%);
}
.notice-banner-left { position:relative; z-index:1; flex:1; }
.notice-banner-eyebrow { font-size:11px; font-weight:700; color:#e63946; text-transform:uppercase; letter-spacing:1.5px; margin:0 0 6px; }
.notice-banner-left h1 { font-size:18px; font-weight:800; color:#111; margin:0 0 6px; line-height:1.4; }
.notice-banner-left p  { font-size:12px; color:#666; margin:0; line-height:1.6; }
.notice-banner-right {
    position:relative; z-index:2;
    display:flex; align-items:center; justify-content:center;
    gap:10px; padding-left:20px;
}
.notice-banner-icon-main { font-size:48px; color:rgba(255,255,255,.9); }

/* ── 카운트 바 ── */
.notice-count-bar {
    display:flex; align-items:center; justify-content:space-between;
    padding:8px 0 10px; font-size:13px; color:#555;
    border-bottom:2px solid #e63946; margin-bottom:12px;
    flex-wrap:wrap; gap:6px;
}
.notice-count-bar strong { color:#111; font-weight:700; }
.notice-bar-right { display:flex; align-items:center; gap:6px; }
.notice-sch-icon {
    display:inline-flex; align-items:center; justify-content:center;
    width:30px; height:30px; border:1px solid #ddd; border-radius:5px;
    background:#fff; color:#555; cursor:pointer; font-size:13px;
    transition:all .15s;
}
.notice-sch-icon:hover { background:#e63946; color:#fff; border-color:#e63946; }

/* ── 검색 폼 ── */
.notice-sch-form {
    display:none; gap:6px; align-items:center;
    background:#fff; border:1px solid #ddd; border-radius:8px;
    box-shadow:0 4px 14px rgba(0,0,0,.09);
    padding:10px 14px; margin-bottom:12px;
}
.notice-sch-form.open { display:flex; }
.notice-sch-form select { height:36px; border:1px solid #ddd; border-radius:5px; padding:0 8px; font-size:12px; outline:none; background:#fafafa; }
.notice-sch-form input[type=text] { flex:1; height:36px; border:1px solid #ddd; border-radius:5px; padding:0 10px; font-size:12px; outline:none; }
.notice-sch-form input[type=text]:focus { border-color:#e63946; }
.notice-sch-form button { height:36px; padding:0 16px; background:#e63946; color:#fff; border:none; border-radius:5px; font-size:12px; font-weight:700; cursor:pointer; transition:background .15s; }
.notice-sch-form button:hover { background:#c0392b; }

/* ── 테이블 ── */
.notice-tbl { width:100%; border-collapse:collapse; font-size:13px; }
.notice-tbl thead tr { background:#1a1a2e; }
.notice-tbl th { padding:11px 8px; color:#fff; font-weight:700; font-size:12px; text-align:center; white-space:nowrap; }
.notice-tbl th.th-left { text-align:left; padding-left:14px; }
.notice-tbl td { padding:10px 8px; border-bottom:1px solid #f0f0f0; text-align:center; vertical-align:middle; }
.notice-tbl td.td-left { text-align:left; padding-left:14px; }
.notice-tbl tbody tr:hover td { background:#fff9f9; }
.notice-tbl tr.notice-pin td { background:#fff8f8; }
.notice-tbl td a { color:#333; text-decoration:none; }
.notice-tbl td a:hover { color:#e63946; }
.notice-pin-badge { display:inline-block; background:#e63946; color:#fff; font-size:10px; font-weight:700; padding:1px 7px; border-radius:10px; margin-right:4px; vertical-align:middle; }
.notice-new-icon { display:inline-block; background:#2ecc71; color:#fff; font-size:9px; font-weight:800; padding:1px 5px; border-radius:8px; margin-left:3px; vertical-align:middle; }
.notice-cmt { color:#e63946; font-size:11px; font-weight:700; margin-left:3px; }
.notice-empty { text-align:center; padding:50px; color:#bbb; font-size:13px; }

/* ── 페이지네이션 ── */
.notice-pg-wrap { text-align:center; padding:14px 0 6px; }
.notice-pg-wrap .pg_wrap { display:inline-block; }
.notice-pg-wrap .pg { display:inline-flex; gap:3px; list-style:none; margin:0; padding:0; }
.notice-pg-wrap .pg li a,
.notice-pg-wrap .pg li strong {
    display:inline-flex; align-items:center; justify-content:center;
    min-width:28px; height:28px; padding:0 6px;
    border:1px solid #ddd; border-radius:4px;
    font-size:12px; color:#555; text-decoration:none;
    background:#fff; cursor:pointer;
}
.notice-pg-wrap .pg li.on a,
.notice-pg-wrap .pg li.on strong,
.notice-pg-wrap .pg_current a,
.notice-pg-wrap .pg_current strong { background:#e63946; color:#fff; border-color:#e63946; font-weight:700; }
.notice-pg-wrap .pg li a:hover { background:#e63946; color:#fff; border-color:#e63946; }

/* ── 하단 정보 섹션 ── */
.nt-info-section { margin-top:20px; }
.nt-what-box {
    position:relative; background:#111; border-radius:10px;
    overflow:hidden; margin-bottom:12px; padding:28px 32px; color:#fff;
}
.nt-tape-deco {
    position:absolute; top:0; right:0; width:160px; height:160px;
    background:repeating-linear-gradient(-45deg,rgba(255,220,0,.15) 0,rgba(255,220,0,.15) 12px,rgba(0,0,0,.06) 12px,rgba(0,0,0,.06) 24px);
    border-radius:0 10px 0 0;
}
.nt-what-inner { position:relative; z-index:1; }
.nt-what-title { font-size:18px; font-weight:900; color:#fff; margin:0 0 14px; letter-spacing:-.3px; }
.nt-what-box p { font-size:12px; line-height:2; color:rgba(255,255,255,.75); margin:0; }
.nt-guide-block { background:#fff; border-radius:8px; overflow:hidden; margin-bottom:10px; border:1px solid #eee; }
.nt-guide-hd { background:linear-gradient(90deg,#e63946 0%,#c0392b 100%); color:#fff; font-size:14px; font-weight:900; padding:11px 20px; letter-spacing:-.2px; }
.nt-guide-body { padding:16px 20px; }
.nt-guide-body p { font-size:12px; line-height:1.9; color:#444; margin:0 0 10px; }
.nt-guide-body p:last-child { margin-bottom:0; }

/* ── 반응형 ── */
@media (max-width: 1024px) {
    .notice-banner { padding: 22px 20px; }
}
@media (max-width: 768px) {
    .notice-banner { padding: 20px 16px; min-height: 110px; }
    .notice-banner-right { display: none; }
    .notice-banner-left h1 { font-size: 15px; }
    .notice-banner-eyebrow { font-size: 10px; }
}
@media (max-width: 480px) {
    .notice-banner { padding: 16px 12px; min-height: 90px; }
    .notice-banner-left h1 { font-size: 13px; }
}
