@charset "utf-8";
/* JINCOM MOBILE SPEED FIX 2026-06-17: 외부 웹폰트 import 완전 제거, 시스템 폰트 우선 사용 */
:root {
  --jc-font-sans:-apple-system,BlinkMacSystemFont,'Apple SD Gothic Neo','Malgun Gothic','Noto Sans KR',Arial,sans-serif;
  --jc-font-num:-apple-system,BlinkMacSystemFont,'Apple SD Gothic Neo','Malgun Gothic',Arial,sans-serif;
  --bg-deep:  #080c14;
  --bg-dark:  #0d1520;
  --bg-card:  #111827;
  --bg-card2: #151e2e;
  --accent:   #1e8fff;
  --accent2:  #00d4ff;
  --orange:   #ff6b35;
  --text:     #ffffff;
  --text-sub: #F0F4FF;
  --text-dim: #E0E8F4;
  --text-muted:#9CA3AF;
  --border:   rgba(30,143,255,0.15);
  --border2:  rgba(255,255,255,0.08);
  --glow:     0 0 30px rgba(30,143,255,0.25);
}


/* Jincomputer 2026-05-22: PC 목록에서 관리자용 체크박스 라벨이 보이면서 제목이 2번 출력되는 문제 방지 */
.msg_sound_only,
.sound_only {
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
  font-size:0 !important;
  line-height:0 !important;
}

/* ===== 기본 초기화 ===== */
*{margin:0;padding:0;box-sizing:border-box}
html{overflow-y:scroll;scroll-behavior:smooth}
body{
  font-family:var(--jc-font-sans);
  background:var(--bg-deep);
  color:var(--text-sub);
  line-height:1.7;
  font-size:21px;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
h1,h2,h3,h4,h5,h6{font-family:var(--jc-font-sans);margin:0;padding:0;color:var(--text)}
ul,li{margin:0;padding:0;list-style:none}
a:link,a:visited{color:var(--text-dim);text-decoration:none}
a:hover{color:var(--accent2);text-decoration:none}
img{vertical-align:middle;max-width:100%}
input,button,textarea,select{font-family:var(--jc-font-sans)}
button{cursor:pointer}
p{margin:0;padding:0}

/* 기존 그누보드 레이아웃 초기화 */
#hd,#hd_h1,#hd_wrapper,#wrapper,#aside,#container,#ft,#hd_login_msg{all:unset;display:block}
#hd_h1,#skip_to_container{position:absolute;font-size:0;overflow:hidden;width:1px;height:1px}

/* ===== 헤더 ===== */
#jc-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(8,12,20,0.95);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  padding:0 40px;height:80px;
  display:flex;align-items:center;justify-content:space-between;
  overflow:visible;
}
.jc-logo{display:flex;align-items:center;gap:12px;text-decoration:none}
.jc-logo-icon{
  width:42px;height:42px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  border-radius:10px;display:flex;align-items:center;justify-content:center;
  font-family:'Oxanium',sans-serif;font-weight:800;font-size:24px;color:#fff;
  box-shadow:0 4px 15px rgba(30,143,255,0.4);
}
.jc-logo-text .main{font-family:'Oxanium',sans-serif;font-size:22px;font-weight:700;color:#fff;letter-spacing:1px;display:block}
.jc-logo-text .sub{font-size:16px;color:var(--text-dim);letter-spacing:2px;display:block}
#jc-nav{display:flex;gap:10px;align-items:center;flex-wrap:nowrap}
#jc-nav a{color:#ffffff;font-size:18px;font-weight:700;transition:all 0.2s;text-decoration:none;opacity:1;white-space:nowrap}
#jc-nav a:hover{color:var(--accent2);text-shadow:0 0 12px rgba(0,212,255,0.5);opacity:1}
#jc-nav .jc-nav-item{position:relative;height:80px;display:flex;align-items:center}
#jc-nav .jc-nav-main{display:flex;align-items:center;gap:6px;padding:0 8px;height:80px;font-size:19px;font-weight:800;color:#ffffff}
#jc-nav .jc-nav-main::after{content:'▾';font-size:12px;color:#9fb8d8;margin-top:2px;transition:transform .2s,color .2s}
#jc-nav .jc-nav-item:hover .jc-nav-main{color:var(--accent2);text-shadow:0 0 12px rgba(0,212,255,0.45)}
#jc-nav .jc-nav-item:hover .jc-nav-main::after{transform:rotate(180deg);color:var(--accent2)}
#jc-nav .jc-dropdown{
  display:none;
  position:absolute;top:72px;left:50%;transform:translateX(-50%) translateY(10px);
  min-width:190px;padding:10px;border:1px solid rgba(30,143,255,.25);border-radius:14px;
  background:rgba(13,21,32,.98);box-shadow:0 16px 40px rgba(0,0,0,.38),0 0 24px rgba(30,143,255,.12);
  opacity:0;visibility:hidden;pointer-events:none;transition:opacity .18s ease,transform .18s ease;z-index:1200
}
#jc-nav .jc-dropdown::before{content:'';position:absolute;top:-10px;left:0;right:0;height:12px}
#jc-nav .jc-nav-item:hover > .jc-dropdown,#jc-nav .jc-nav-item:focus-within > .jc-dropdown{display:block;opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}
#jc-nav .jc-dropdown a{display:block;padding:10px 12px;border-radius:10px;font-size:16px;font-weight:700;color:#eaf2ff;text-shadow:none;line-height:1.3}
#jc-nav .jc-dropdown a:hover{background:rgba(30,143,255,.16);color:var(--accent2);text-shadow:none}
#jc-nav .jc-dropdown .jc-admin-nav{margin-top:6px;border-top:1px solid rgba(255,255,255,.1);color:#ffd166}
#jc-nav .nav-cta{
  background:linear-gradient(135deg,var(--accent),#006ccc);
  color:#fff!important;padding:10px 18px;border-radius:10px;
  font-weight:800!important;font-size:17px!important;
  box-shadow:0 4px 12px rgba(30,143,255,0.35);transition:all 0.2s!important;
}
#jc-nav .nav-cta-repair{background:linear-gradient(135deg,#00b7ff,#006ccc)!important;box-shadow:0 4px 12px rgba(0,183,255,.32)!important}
#jc-nav .nav-cta-phone{font-family:'Oxanium','Pretendard Variable',Pretendard,sans-serif;font-size:20px!important;letter-spacing:.3px}
#jc-nav .nav-cta:hover{transform:translateY(-1px);box-shadow:0 6px 18px rgba(30,143,255,0.5)!important}

/* ===== 페이지 비주얼 ===== */
.page-visual{
  background:linear-gradient(135deg,var(--bg-dark),var(--bg-card));
  border-bottom:1px solid var(--border2);
  padding:120px 40px 52px;
  position:relative;overflow:hidden;margin-top:80px;
}
.page-visual::before{
  content:'';position:absolute;inset:0;
  background-image:linear-gradient(rgba(30,143,255,0.04)1px,transparent 1px),
    linear-gradient(90deg,rgba(30,143,255,0.04)1px,transparent 1px);
  background-size:60px 60px;
}
.page-visual-inner{max-width:1200px;margin:0 auto;position:relative;z-index:1}
.page-visual-tag{font-size:16px;color:var(--accent2);letter-spacing:3px;font-weight:600;margin-bottom:12px;display:block}
.page-visual h2{font-size:clamp(38px,5vw,58px);font-weight:800;color:#fff;letter-spacing:-0.5px}
.page-visual p{font-size:20px;color:var(--text-dim);margin-top:10px}

/* ===== LNB ===== */
#jc-lnb{background:var(--bg-card);border-bottom:1px solid var(--border2);padding:0 40px}
.jc-lnb-inner{max-width:1200px;margin:0 auto;display:flex}
#jc-lnb a{
  display:inline-block;padding:16px 24px;
  color:#C8D6E8;font-size:19px;font-weight:500;
  border-bottom:2px solid transparent;transition:all 0.2s;text-decoration:none;
}
#jc-lnb a:hover,#jc-lnb a.on{color:var(--accent2);border-bottom-color:var(--accent2);font-weight:700}

/* ===== 콘텐츠 ===== */
#jc-content{max-width:1320px;margin:0 auto;padding:60px 40px}
.section-tag{display:inline-block;font-size:16px;color:var(--accent2);letter-spacing:3px;margin-bottom:14px;font-weight:600}
.section-title{font-size:clamp(36px,4.5vw,56px);font-weight:800;line-height:1.2;margin-bottom:14px;color:#fff;letter-spacing:-0.5px}
.section-desc{font-size:21px;color:var(--text-sub);max-width:560px;line-height:1.8}

/* ===== 서비스 카드 ===== */
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px}
.service-card{
  background:var(--bg-card);border:1px solid var(--border2);
  border-radius:16px;padding:36px 28px;
  transition:all 0.3s;cursor:pointer;position:relative;overflow:hidden;
}
.service-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,transparent,var(--accent),transparent);
  opacity:0;transition:opacity 0.3s;
}
.service-card:hover{transform:translateY(-4px);border-color:rgba(30,143,255,0.3);box-shadow:var(--glow)}
.service-card:hover::before{opacity:1}
.svc-icon{width:56px;height:56px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:26px;margin-bottom:20px}
.svc-title{font-size:24px;font-weight:700;margin-bottom:10px;color:#fff}
.svc-desc{font-size:19px;color:var(--text-sub);line-height:1.8;margin-bottom:16px}
.svc-tags{display:flex;flex-wrap:wrap;gap:6px}
.svc-tag{font-size:17px;color:var(--accent);background:rgba(30,143,255,0.08);border:1px solid rgba(30,143,255,0.2);padding:4px 12px;border-radius:20px;font-weight:500}
.svc-more{display:inline-flex;align-items:center;margin-top:14px;font-size:18px;font-weight:600;color:var(--accent2);opacity:0;transition:opacity 0.2s}
.service-card:hover .svc-more{opacity:1}

/* ===== 상세 박스 ===== */
.info-section{margin-bottom:60px}
.info-box{
  background:var(--bg-card);border:1px solid var(--border2);
  border-radius:16px;padding:40px;margin-bottom:24px;
}
.info-box h3{font-size:26px;font-weight:700;margin-bottom:20px;color:#fff;
  padding-bottom:14px;border-bottom:1px solid var(--border2)}
.info-table{width:100%;border-collapse:collapse}
.info-table th,.info-table td{padding:14px 16px;text-align:left;border-bottom:1px solid var(--border2);font-size:20px}
.info-table th{color:var(--accent2);font-weight:600;width:30%;background:rgba(30,143,255,0.05)}
.info-table td{color:var(--text-sub)}
.info-table tr:last-child th,.info-table tr:last-child td{border-bottom:none}

/* 탭 */
.tab-nav{display:flex;gap:0;border-bottom:1px solid var(--border2);margin-bottom:40px}
.tab-nav a{
  padding:16px 28px;color:#ffffff;font-weight:700;font-size:20px;font-weight:500;
  border-bottom:2px solid transparent;margin-bottom:-1px;
  transition:all 0.2s;text-decoration:none;display:inline-block;
}
.tab-nav a.on,.tab-nav a:hover{color:var(--accent2);border-bottom-color:var(--accent2);font-weight:700}
.tab-content{display:none}
.tab-content.on{display:block}

/* 가격표 */
.price-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px;margin-top:24px}
.price-card{background:var(--bg-card2);border:1px solid var(--border2);border-radius:12px;padding:28px 24px}
.price-card h4{font-size:22px;font-weight:700;color:#fff;margin-bottom:16px}
.price-item{display:flex;justify-content:space-between;padding:10px 0;border-bottom:1px solid var(--border2);font-size:20px}
.price-item:last-child{border-bottom:none}
.price-item .label{color:var(--text-sub)}
.price-item .price{color:var(--accent2);font-weight:600;font-family:'Oxanium',sans-serif}

/* 하이라이트 */
.highlight-box{
  background:linear-gradient(135deg,rgba(30,143,255,0.08),rgba(0,212,255,0.05));
  border:1px solid var(--border);border-radius:12px;padding:24px 28px;margin-bottom:24px;
}
.highlight-box p{font-size:20px;color:var(--text-sub);line-height:1.9}
.highlight-box strong{color:var(--accent2)}

/* 스텝 */
.steps{display:flex;flex-direction:column;gap:20px;margin-top:24px}
.step{display:flex;gap:20px;align-items:flex-start}
.step-num{
  width:46px;height:46px;flex-shrink:0;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  border-radius:12px;display:flex;align-items:center;justify-content:center;
  font-family:'Oxanium',sans-serif;font-size:21px;font-weight:800;color:#fff;
}
.step-text h4{font-size:21px;font-weight:700;margin-bottom:4px;color:#fff}
.step-text p{font-size:19px;color:var(--text-sub)}

/* ===== 버튼 ===== */
.btn-primary{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:linear-gradient(135deg,#2196f3,#0066cc);
  color:#ffffff !important;border:none;padding:16px 32px;border-radius:10px;
  font-size:22px;font-weight:800;font-family:'Pretendard Variable',Pretendard,sans-serif;
  cursor:pointer;text-decoration:none;min-height:52px;
  box-shadow:0 6px 24px rgba(33,150,243,0.5);transition:all 0.25s;
  opacity:1 !important;
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(30,143,255,0.5);color:#fff}
.btn-kakao{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:#FEE500;color:#1a1a1a !important;border:none;
  padding:16px 32px;border-radius:10px;
  font-size:22px;font-weight:800;font-family:'Pretendard Variable',Pretendard,sans-serif;
  cursor:pointer;text-decoration:none;min-height:52px;transition:all 0.25s;
  opacity:1 !important;
}
.btn-kakao:hover{filter:brightness(1.1);transform:translateY(-2px);color:#1a1a1a}
.btn-orange{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:#ff6b35;color:#ffffff !important;border:none;
  padding:16px 32px;border-radius:10px;
  font-size:22px;font-weight:800;font-family:'Pretendard Variable',Pretendard,sans-serif;
  cursor:pointer;text-decoration:none;min-height:52px;transition:all 0.25s;
  box-shadow:0 6px 24px rgba(255,107,53,0.5);opacity:1 !important;
}
.btn-orange:hover{filter:brightness(1.1);transform:translateY(-2px);color:#fff}

/* ===== 폼 ===== */
.jc-form{display:flex;flex-direction:column;gap:16px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-group{display:flex;flex-direction:column;gap:8px}
.form-group label{font-size:19px;color:var(--text-sub);font-weight:600}
.form-group input,.form-group textarea,.form-group select{
  background:var(--bg-card);border:1px solid var(--border2);
  border-radius:8px;padding:14px 18px;color:#fff;
  font-size:20px;font-family:'Pretendard Variable',Pretendard,sans-serif;outline:none;
  transition:border-color 0.2s;min-height:50px;
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--accent)}
.form-group input::placeholder,.form-group textarea::placeholder{color:var(--text-muted)}
.form-group textarea{resize:vertical;min-height:130px}
.form-group select option{background:var(--bg-card);color:#fff}
.form-check{display:flex;align-items:center;gap:10px;font-size:19px;color:var(--text-sub)}
.form-check input[type=checkbox]{width:20px;height:20px;accent-color:var(--accent);cursor:pointer}
.btn-submit{
  background:linear-gradient(135deg,var(--accent),#0066cc);
  color:#fff;border:none;padding:18px;border-radius:10px;
  font-size:22px;font-weight:700;font-family:'Pretendard Variable',Pretendard,sans-serif;
  cursor:pointer;transition:all 0.25s;width:100%;min-height:56px;
}
.btn-submit:hover{transform:translateY(-1px);box-shadow:0 8px 24px rgba(30,143,255,0.4)}

/* ===== 게시판 ===== */
#bo_list_wrap,#bo_write_wrap,#bo_view_wrap{
  background:var(--bg-card);border:1px solid var(--border2);
  border-radius:16px;padding:32px;
}
.bo_tbl{width:100%;border-collapse:collapse}
.bo_tbl th{background:rgba(30,143,255,0.08);color:var(--accent2);padding:12px;font-size:15px;border-bottom:1px solid var(--border2);font-weight:600}
.bo_tbl td{padding:12px;font-size:15px;color:#ffffff;border-bottom:1px solid var(--border2)}
.bo_tbl a{color:#ffffff !important;text-decoration:none}
.bo_tbl a:hover{color:var(--accent2)}
.btn_submit,.btn_list,.btn_write{
  background:var(--bg-card2);border:1px solid var(--border2);
  color:var(--text-sub);padding:10px 18px;border-radius:8px;font-size:19px;cursor:pointer;font-weight:500;
}
.btn_submit:hover,.btn_list:hover,.btn_write:hover{background:var(--accent);color:#fff;border-color:var(--accent)}

/* ===== 푸터 ===== */
#jc-footer{background:#050810;border-top:1px solid var(--border2);padding:52px 40px}
.jc-footer-inner{max-width:1200px;margin:0 auto}
.jc-footer-top{
  display:flex;justify-content:space-between;align-items:center;
  padding-bottom:24px;border-bottom:1px solid var(--border2);margin-bottom:24px;
}
.jc-footer-links{display:flex;gap:20px}
.jc-footer-links a{font-size:19px;color:var(--text-muted);text-decoration:none}
.jc-footer-links a:hover{color:var(--accent2)}
.jc-footer-bottom{display:flex;justify-content:space-between;flex-wrap:wrap;gap:16px}
.jc-footer-info p{font-size:18px;color:var(--text-muted);line-height:2.2}
.jc-footer-copy{font-size:18px;color:var(--text-muted);text-align:right}

/* ===== 플로팅 ===== */
.float-btns{position:fixed;right:28px;bottom:28px;display:flex;flex-direction:column;gap:12px;z-index:999}
.float-kakao{width:72px;height:72px;background:#FEE500;border-radius:50%;display:flex;align-items:center;justify-content:center;text-decoration:none;box-shadow:0 6px 24px rgba(0,0,0,0.35);transition:transform 0.25s;font-size:34px}
.float-phone{width:72px;height:72px;background:linear-gradient(135deg,var(--accent),#0066cc);border-radius:50%;display:flex;align-items:center;justify-content:center;text-decoration:none;box-shadow:0 4px 16px rgba(30,143,255,0.4);transition:transform 0.25s;font-size:26px}
.float-kakao:hover,.float-phone:hover{transform:scale(1.12)}

/* ===== 스크롤 애니메이션 ===== */
.reveal{opacity:0;transform:translateY(20px);transition:all 0.6s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:0.1s}
.reveal-delay-2{transition-delay:0.2s}
.reveal-delay-3{transition-delay:0.3s}

/* ===== 반응형 ===== */
@media(max-width:900px){
  /* 모바일에서는 tail.php의 PC용 플로팅 버튼을 숨기고, tail.sub.php의 모바일 전용 쿠폰/카톡/전화 버튼만 사용합니다. */
  .float-btns{display:none !important;}
  #jc-header{padding:0 20px}
  #jc-nav .jc-nav-item{display:none}
  #jc-nav a:not(.nav-cta):not(:last-child){display:none}
  .page-visual{padding:100px 20px 40px}
  #jc-content{padding:50px 20px}
  #jc-lnb{padding:0 20px;overflow-x:auto}
  .service-grid{grid-template-columns:1fr 1fr}
  .form-row{grid-template-columns:1fr}
  .jc-footer-top{flex-direction:column;gap:16px}
  .jc-footer-bottom{flex-direction:column}
}
@media(max-width:600px){
  .service-grid{grid-template-columns:1fr}
  .price-grid{grid-template-columns:1fr}
}

/* 접수현황 latest 스타일 강화 */
.jc-latest li .lt-subj,
.jc-latest li .lt-subj a,
.lt-subj a { color:#ffffff !important; }
.lt-date { color:#9CA3AF; font-size:13px; }
.lt-name { color:#E5E7EB; font-weight:600; }
.lt-addr { color:#9CA3AF; }


/* ===== 진컴퓨터 리뉴얼 보정 패치 ===== */
.main-as-inner{align-items:stretch}
.main-as-inner>div{display:flex;flex-direction:column}
.main-as-inner>div>div[style*="margin-top:24px"]{flex:1}
.jc-note{font-size:17px;color:var(--text-muted);line-height:1.8;margin-top:14px}
.jc-mini-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px;margin-top:24px}
.jc-mini-card{background:var(--bg-card2);border:1px solid var(--border2);border-radius:12px;padding:24px}
.jc-mini-card h4{font-size:22px;color:#fff;margin-bottom:10px}
.jc-mini-card p{font-size:18px;color:var(--text-sub);line-height:1.8}
@media(max-width:900px){
  .location-grid{grid-template-columns:1fr !important}
}


/* ===== 요청사항 2차 반영 ===== */
.jc-lnb-inner{gap:8px;align-items:center}
.jc-lnb-inner a:first-child{background:rgba(255,255,255,0.04);border-radius:999px;margin-right:6px}
@media(min-width:901px){.main-as-inner{max-width:1400px !important;gap:44px !important;align-items:stretch !important}.main-as-inner>div{min-width:0}.main-as-panel{min-height:430px}}
.jc-board-nav{background:var(--bg-card);border-bottom:1px solid var(--border2);padding:0 40px}
.jc-board-nav-inner{max-width:1320px;margin:0 auto;display:flex;gap:8px;align-items:center;overflow-x:auto}
.jc-board-nav a{display:inline-block;padding:16px 24px;color:#fff;font-size:19px;font-weight:700;border-bottom:2px solid transparent;text-decoration:none;white-space:nowrap}
.jc-board-nav a.on,.jc-board-nav a:hover{color:var(--accent2);border-bottom-color:var(--accent2)}
.jc-board-shell{max-width:1320px;margin:0 auto;padding:54px 40px}
#bo_gall.jc-product-board{width:100% !important;background:transparent;border:0;padding:0}
#bo_gall.jc-product-board #bo_sch{background:var(--bg-card);border:1px solid var(--border2);border-radius:16px;padding:20px;margin:0 0 22px;text-align:center}
#bo_gall.jc-product-board #stx{height:46px !important;border:1px solid var(--border2) !important;background:var(--bg-deep);color:#fff;border-radius:10px;padding:0 14px;font-size:18px}
#bo_gall.jc-product-board .bo_fx{display:flex;justify-content:space-between;align-items:center;margin:16px 0 24px;gap:12px;flex-wrap:wrap}
#bo_gall.jc-product-board #bo_list_total{color:#F0F4FF;font-size:18px}
#bo_gall.jc-product-board .btn_bo_user{display:flex;gap:8px;margin:0;padding:0;list-style:none}
#bo_gall.jc-product-board .btn_design1,#bo_gall.jc-product-board .btn_design2,#bo_gall.jc-product-board .btn_design3,#bo_gall.jc-product-board .btn_b01,#bo_gall.jc-product-board .btn_b02{display:inline-flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--accent),#0066cc);color:#fff !important;border:0;border-radius:10px;padding:12px 20px;font-size:18px;font-weight:800;text-decoration:none;min-height:44px}
#bo_gall.jc-product-board #gall_ul{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px;margin:0;padding:0;list-style:none}
#bo_gall.jc-product-board .gall_li{width:auto !important;margin:0 !important;float:none !important;clear:none !important;background:var(--bg-card);border:1px solid var(--border2);border-radius:18px;padding:20px;overflow:hidden;transition:all .25s;min-height:100%;text-align:center}
#bo_gall.jc-product-board .gall_li:hover{transform:translateY(-4px);border-color:rgba(30,143,255,.35);box-shadow:0 12px 32px rgba(0,0,0,.28)}
#bo_gall.jc-product-board .gall_con{margin:0;padding:0;list-style:none}
#bo_gall.jc-product-board .gall_href{border:0 !important;background:var(--bg-deep);border-radius:14px;overflow:hidden;height:260px;display:flex;align-items:center;justify-content:center;margin-bottom:18px}
#bo_gall.jc-product-board .gall_href a{display:flex;width:100%;height:100%;align-items:center;justify-content:center}
#bo_gall.jc-product-board .gall_href img{width:100% !important;height:100% !important;object-fit:cover;display:block}
#bo_gall.jc-product-board .gall_href span{display:flex !important;align-items:center;justify-content:center;width:100% !important;height:100% !important;color:#9CA3AF;background:var(--bg-deep);font-size:18px}
#bo_gall.jc-product-board .gall_text_href{width:100% !important;text-align:center;margin:0;padding:0}
#bo_gall.jc-product-board .gall_text_href a{color:#fff !important;font-size:22px;font-weight:800;line-height:1.45;text-decoration:none;word-break:keep-all}
#bo_gall.jc-product-board .empty_list{grid-column:1/-1;text-align:center;background:var(--bg-card);border:1px solid var(--border2);border-radius:16px;padding:50px;color:#F0F4FF;font-size:20px}
#bo_v.jc-product-view{width:100% !important;max-width:1100px;margin:0 auto;background:var(--bg-card);border:1px solid var(--border2);border-radius:18px;padding:38px;color:#F0F4FF}
#bo_v.jc-product-view #bo_v_title{font-size:34px;color:#fff;text-align:center;margin-bottom:18px;line-height:1.35}
#bo_v.jc-product-view #bo_v_info{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;background:var(--bg-card2);border:1px solid var(--border2);border-radius:12px;padding:14px 18px;color:#C8D6E8;font-size:16px;margin-bottom:28px}
#bo_v.jc-product-view #bo_v_img{text-align:center;margin-bottom:28px}
#bo_v.jc-product-view #bo_v_img img,#bo_v.jc-product-view #bo_v_con img{max-width:100% !important;height:auto !important;border-radius:14px;display:block;margin:0 auto 18px}
#bo_v.jc-product-view #bo_v_con{font-size:20px;line-height:1.9;color:#F0F4FF;word-break:keep-all}
#bo_v.jc-product-view #bo_v_con table{width:100% !important;border-collapse:separate !important;border-spacing:0 !important;overflow:hidden;border:1px solid var(--border2);border-radius:14px;margin:22px 0;background:var(--bg-deep)}
#bo_v.jc-product-view #bo_v_con th,#bo_v.jc-product-view #bo_v_con td{border-bottom:1px solid var(--border2) !important;border-right:1px solid var(--border2) !important;padding:16px 18px !important;font-size:19px !important;color:#F0F4FF !important;line-height:1.7 !important;vertical-align:middle !important}
#bo_v.jc-product-view #bo_v_con th,#bo_v.jc-product-view #bo_v_con td:first-child{background:rgba(30,143,255,.08);color:var(--accent2) !important;font-weight:800;min-width:160px}
#bo_v.jc-product-view .bo_v_com,#bo_v.jc-product-view .bo_v_nb{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;margin:12px 0;padding:0;list-style:none}
#bo_v.jc-product-view .btn_b01,#bo_v.jc-product-view .btn_b02,#bo_v.jc-product-view .btn_admin{display:inline-flex;align-items:center;justify-content:center;background:var(--bg-card2);border:1px solid var(--border2);color:#fff !important;border-radius:10px;padding:10px 16px;font-size:17px;font-weight:700;text-decoration:none}
#bo_v.jc-product-view .btn_b02{background:linear-gradient(135deg,var(--accent),#0066cc);border:0}
@media(max-width:900px){#bo_gall.jc-product-board #gall_ul{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.jc-board-shell{padding:36px 20px}}
@media(max-width:600px){#bo_gall.jc-product-board #gall_ul{grid-template-columns:1fr}#bo_gall.jc-product-board .gall_href{height:230px}#bo_v.jc-product-view{padding:24px 18px}}


/* ===== 2026-04-28 조립·중고PC / 수리접수 최종 보정 ===== */
.jc-board-nav .jc-write-link{margin-left:auto;background:linear-gradient(135deg,var(--accent),#0066cc);color:#fff !important;border:0 !important;border-radius:12px;padding:12px 22px !important;box-shadow:0 8px 24px rgba(30,143,255,.25)}
.jc-board-shell{max-width:1440px !important;padding:48px 40px !important}
#bo_gall.jc-product-board #bo_sch,#bo_gall.jc-product-board #bo_cate,#bo_gall.jc-product-board #bo_list_total{display:none !important}
.jc-product-toolbar{display:flex;align-items:center;justify-content:space-between;gap:20px;margin:0 0 28px;background:var(--bg-card);border:1px solid var(--border2);border-radius:20px;padding:24px 28px;color:#fff}
.jc-product-toolbar strong{display:block;font-size:30px;font-weight:900;letter-spacing:-.5px;color:#fff;margin-bottom:4px}
.jc-product-toolbar span{display:block;font-size:18px;color:#C8D6E8}
.jc-product-write-btn{display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:0 26px;background:linear-gradient(135deg,var(--accent),#0066cc);border-radius:14px;color:#fff !important;font-size:20px;font-weight:900;text-decoration:none;white-space:nowrap;box-shadow:0 8px 24px rgba(30,143,255,.35)}
#bo_gall.jc-product-board .jc-product-grid{display:grid !important;grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:30px !important;margin:0 !important;padding:0 !important;list-style:none !important}
#bo_gall.jc-product-board .jc-product-card{float:none !important;clear:none !important;width:auto !important;margin:0 !important;background:var(--bg-card);border:1px solid var(--border2);border-radius:22px;padding:24px;min-height:100%;text-align:center;overflow:hidden;transition:.25s;box-shadow:0 12px 36px rgba(0,0,0,.16)}
#bo_gall.jc-product-board .jc-product-card:hover{transform:translateY(-4px);border-color:rgba(0,212,255,.45);box-shadow:0 18px 46px rgba(0,0,0,.32)}
.jc-product-card-link{display:block;text-decoration:none;color:inherit;height:100%}
.jc-product-meta-row{display:flex;justify-content:space-between;align-items:center;gap:10px;margin-bottom:10px;color:#9FB3C8;font-size:16px;font-weight:700}
.jc-product-cat{color:var(--accent2);background:rgba(0,212,255,.08);border:1px solid rgba(0,212,255,.2);padding:5px 10px;border-radius:999px}
.jc-product-price{font-size:21px;color:#fff;margin-bottom:14px;font-weight:700}.jc-product-price b{font-size:28px;color:#ff8a2a;font-family:'Oxanium',sans-serif;letter-spacing:.3px}
.jc-product-thumb{height:310px;border-radius:18px;background:#070b12;display:flex;align-items:center;justify-content:center;overflow:hidden;margin-bottom:22px;border:1px solid rgba(255,255,255,.08)}
.jc-product-thumb img{width:100% !important;height:100% !important;object-fit:cover;display:block;transition:.25s}.jc-product-card:hover .jc-product-thumb img{transform:scale(1.03)}
.jc-product-thumb span{color:#9CA3AF;font-size:18px}
.jc-product-card h3{font-size:25px !important;line-height:1.45 !important;color:#fff;margin:0 0 14px;font-weight:900;letter-spacing:-.4px;word-break:keep-all}
.jc-product-card p{font-size:17px;color:#B6C5D8;line-height:1.7;margin:0;word-break:keep-all}
#bo_gall.jc-product-board .empty_list{grid-column:1/-1;text-align:center;background:var(--bg-card);border:1px solid var(--border2);border-radius:18px;padding:70px 20px;color:#F0F4FF;font-size:22px}
.jc-admin-actions{margin-top:24px}

#bo_v.jc-product-view{max-width:1420px !important;width:100% !important;margin:0 auto;background:transparent !important;border:0 !important;padding:0 !important;color:#F0F4FF}
.jc-product-view-head{background:var(--bg-card);border:1px solid var(--border2);border-radius:22px;padding:34px 40px;margin-bottom:28px;text-align:center}
.jc-product-view-cat{display:inline-flex;color:var(--accent2);background:rgba(0,212,255,.08);border:1px solid rgba(0,212,255,.2);padding:7px 14px;border-radius:999px;font-size:17px;font-weight:800;margin-bottom:12px}
#bo_v.jc-product-view #bo_v_title{font-size:36px !important;color:#fff !important;line-height:1.35 !important;margin:0 0 10px !important;font-weight:900;letter-spacing:-.6px;text-align:center}
.jc-product-view-head p{font-size:18px;color:#B6C5D8;margin:0}
.jc-view-actions-top,.jc-view-actions-bottom{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap;margin:0 0 22px}.jc-view-actions-bottom{margin:28px 0 0}
#bo_v.jc-product-view .btn_b01,#bo_v.jc-product-view .btn_b02,#bo_v.jc-product-view .btn_admin{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 18px;border-radius:12px;background:var(--bg-card2);border:1px solid var(--border2);color:#fff !important;font-size:17px;font-weight:800;text-decoration:none}
#bo_v.jc-product-view .btn_b02{background:linear-gradient(135deg,var(--accent),#0066cc);border:0;box-shadow:0 8px 22px rgba(30,143,255,.24)}
#bo_v.jc-product-view .btn_b02.kakao{background:#FEE500;color:#111 !important;box-shadow:none}
.jc-product-detail-layout{display:grid;grid-template-columns:minmax(360px,44%) minmax(0,56%);gap:34px;align-items:start;background:var(--bg-card);border:1px solid var(--border2);border-radius:24px;padding:34px}
.jc-product-photos{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;align-content:start}.jc-product-photo{display:block;position:relative;border-radius:16px;overflow:hidden;background:#05080e;border:1px solid rgba(255,255,255,.1);min-height:210px}.jc-product-photo.main{grid-column:1/-1;min-height:430px}.jc-product-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:.25s}.jc-product-photo:hover img{transform:scale(1.04)}.jc-product-photo-empty{border:1px dashed var(--border2);border-radius:16px;min-height:360px;display:flex;align-items:center;justify-content:center;color:#9CA3AF;font-size:20px}
.jc-product-specs{background:rgba(8,12,20,.55);border:1px solid rgba(255,255,255,.08);border-radius:20px;padding:28px;min-height:100%}.jc-product-specs h2{font-size:28px;color:#fff;margin:0 0 20px;font-weight:900}.jc-product-specs #bo_v_con{font-size:20px !important;line-height:1.95 !important;color:#F0F4FF !important;word-break:keep-all}.jc-product-specs #bo_v_con *{max-width:100% !important}.jc-product-specs #bo_v_con table{width:100% !important;border-collapse:separate !important;border-spacing:0 !important;border:1px solid var(--border2) !important;border-radius:16px !important;overflow:hidden !important;background:#fff !important;margin:0 0 24px !important}.jc-product-specs #bo_v_con th,.jc-product-specs #bo_v_con td{border-bottom:1px solid #E5E7EB !important;border-right:1px solid #E5E7EB !important;padding:15px 18px !important;font-size:19px !important;line-height:1.65 !important;color:#111827 !important;background:#fff !important;vertical-align:middle !important}.jc-product-specs #bo_v_con th,.jc-product-specs #bo_v_con td:first-child{width:28%;background:#071221 !important;color:var(--accent2) !important;font-weight:900 !important;letter-spacing:1px}.jc-product-specs #bo_v_con img{max-width:100% !important;height:auto !important;border-radius:12px !important}.jc-product-cta-row{display:flex;gap:12px;margin-top:24px}.jc-product-cta-row a{flex:1}

.jc-request-shell{max-width:1240px !important}.jc-request-write{width:100%;background:var(--bg-card);border:1px solid var(--border2);border-radius:24px;padding:42px;color:#fff;box-shadow:0 18px 52px rgba(0,0,0,.22)}.jc-request-intro{margin-bottom:30px;border-bottom:1px solid var(--border2);padding-bottom:24px}.jc-request-intro span{display:block;color:var(--accent2);letter-spacing:3px;font-size:16px;font-weight:900;margin-bottom:10px}.jc-request-intro h2{font-size:42px;font-weight:900;margin:0 0 12px;color:#fff;letter-spacing:-.7px}.jc-request-intro p{font-size:20px;line-height:1.8;color:#C8D6E8;margin:0;word-break:keep-all}.jc-request-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}.jc-field{display:flex;flex-direction:column;gap:10px}.jc-field.full{grid-column:1/-1}.jc-field span{font-size:18px;font-weight:900;color:#F0F4FF}.jc-field span b{color:var(--accent2);font-size:14px;margin-left:6px}.jc-field input[type=text],.jc-field input[type=password],.jc-field input[type=file],.jc-field textarea{width:100% !important;border:1px solid var(--border2) !important;border-radius:14px !important;background:#070b12 !important;color:#fff !important;font-size:20px !important;min-height:58px !important;padding:0 18px !important;box-sizing:border-box !important}.jc-field textarea{min-height:260px !important;padding:18px !important;line-height:1.8 !important;resize:vertical}.jc-field input::placeholder,.jc-field textarea::placeholder{color:#718096}.jc-field em{font-style:normal;color:#C8D6E8;font-size:15px;margin-top:4px}.jc-request-notice{margin:24px 0 0;background:rgba(0,212,255,.07);border:1px solid rgba(0,212,255,.22);border-radius:16px;padding:18px 20px;color:#D9F7FF;font-size:18px;line-height:1.7}.jc-request-actions{display:flex;gap:12px;justify-content:flex-end;margin-top:28px}.jc-request-actions .btn_design1,.jc-request-actions .btn_design2{display:inline-flex;align-items:center;justify-content:center;min-width:160px;min-height:56px;border:0;border-radius:14px;font-size:20px;font-weight:900;text-decoration:none;cursor:pointer}.jc-request-actions .btn_design1{background:linear-gradient(135deg,var(--accent),#0066cc);color:#fff;box-shadow:0 8px 24px rgba(30,143,255,.32)}.jc-request-actions .btn_design2{background:var(--bg-card2);color:#fff;border:1px solid var(--border2)}
@media(max-width:1100px){#bo_gall.jc-product-board .jc-product-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important}.jc-product-detail-layout{grid-template-columns:1fr}.jc-product-photo.main{min-height:360px}}
@media(max-width:700px){.jc-board-shell{padding:30px 18px !important}.jc-product-toolbar{flex-direction:column;align-items:flex-start}.jc-product-write-btn{width:100%}#bo_gall.jc-product-board .jc-product-grid{grid-template-columns:1fr !important}.jc-product-thumb{height:260px}.jc-product-detail-layout{padding:20px}.jc-product-photos{grid-template-columns:1fr}.jc-product-photo.main,.jc-product-photo{min-height:260px}.jc-product-specs{padding:20px}.jc-product-specs #bo_v_con th,.jc-product-specs #bo_v_con td{display:block;width:100% !important}.jc-request-write{padding:26px 18px}.jc-request-form-grid{grid-template-columns:1fr}.jc-request-actions{flex-direction:column}.jc-request-actions .btn_design1,.jc-request-actions .btn_design2{width:100%}}


/* 2026-04-28 조립·중고PC / 수리접수 가독성 보강 */
#bo_gall.jc-product-board{max-width:1420px;margin:0 auto;padding-bottom:40px}
#bo_gall.jc-product-board #bo_sch,#bo_gall.jc-product-board #bo_cate,#bo_gall.jc-product-board #bo_list_total{display:none !important}
.jc-product-toolbar{background:linear-gradient(180deg,rgba(17,27,44,.96),rgba(13,22,37,.96)) !important;border:1px solid rgba(0,212,255,.18) !important;box-shadow:0 18px 42px rgba(0,0,0,.18)}
.jc-product-toolbar strong{font-size:32px !important;color:#fff !important}.jc-product-toolbar span{font-size:18px !important;color:#cfe0f5 !important}
#bo_gall.jc-product-board .jc-product-grid{grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:34px !important}
#bo_gall.jc-product-board .jc-product-card{background:linear-gradient(180deg,#111b2c,#0d1625) !important;border:1px solid rgba(148,163,184,.18) !important;border-radius:24px !important;padding:26px !important}
.jc-product-meta-row{font-size:17px !important;color:#b5c6dc !important}.jc-product-price{font-size:22px !important;color:#fff !important}.jc-product-price b{color:#ff8a2a !important;font-size:30px !important}
.jc-product-card h3{color:#fff !important;font-size:26px !important;line-height:1.5 !important;text-shadow:none !important}.jc-product-card p{color:#c7d4e7 !important;font-size:18px !important;line-height:1.75 !important}
.jc-product-thumb{height:330px !important;background:#050910 !important;border:1px solid rgba(255,255,255,.08) !important}.jc-product-thumb img{object-fit:cover !important}

#bo_v.jc-product-view{max-width:1420px !important;margin:0 auto !important;color:#eef6ff !important;background:transparent !important;border:0 !important;padding:0 !important}
.jc-product-view-head{background:linear-gradient(180deg,#111b2c,#0d1625) !important;border:1px solid rgba(0,212,255,.18) !important;border-radius:24px !important;padding:34px 42px !important;margin-bottom:24px !important;text-align:left !important}
.jc-product-view-head #bo_v_title{color:#fff !important;font-size:40px !important;text-align:left !important;margin:0 0 12px !important;line-height:1.35 !important}
.jc-product-view-head p{font-size:19px !important;color:#cfe0f5 !important}
.jc-view-actions-top,.jc-view-actions-bottom{display:flex !important;gap:10px !important;justify-content:flex-end !important;flex-wrap:wrap !important;margin:0 0 24px !important}
.jc-view-actions-bottom{margin:28px 0 0 !important}
#bo_v.jc-product-view .btn_b01,#bo_v.jc-product-view .btn_b02,#bo_v.jc-product-view .btn_admin{min-height:46px !important;padding:0 18px !important;border-radius:12px !important;background:#172236 !important;border:1px solid rgba(148,163,184,.22) !important;color:#fff !important;font-size:17px !important;font-weight:900 !important;text-decoration:none !important;display:inline-flex !important;align-items:center !important;justify-content:center !important}
.jc-product-write-btn,#bo_v.jc-product-view .btn_b02{background:linear-gradient(135deg,#1e8fff,#0066cc) !important;border:0 !important;color:#fff !important}
.jc-product-cta-row .kakao,#bo_v.jc-product-view .btn_b02.kakao{background:#fee500 !important;color:#111 !important}
.jc-product-detail-layout{display:grid !important;grid-template-columns:minmax(420px,48%) minmax(0,52%) !important;gap:34px !important;align-items:start !important;background:linear-gradient(180deg,#101a2b,#0c1422) !important;border:1px solid rgba(148,163,184,.18) !important;border-radius:26px !important;padding:34px !important}
.jc-product-photos{display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:14px !important}
.jc-product-photo{display:block !important;min-height:220px !important;background:#050910 !important;border:1px solid rgba(255,255,255,.1) !important;border-radius:18px !important;overflow:hidden !important}
.jc-product-photo.main{grid-column:1/-1 !important;min-height:460px !important}
.jc-product-photo img{width:100% !important;height:100% !important;object-fit:cover !important;display:block !important}
.jc-product-photo-empty{min-height:420px !important;background:#070b12 !important;border:1px dashed rgba(0,212,255,.35) !important;border-radius:18px !important;color:#cfe0f5 !important;display:flex !important;align-items:center !important;justify-content:center !important;font-size:20px !important}
.jc-product-specs{background:rgba(7,11,18,.76) !important;border:1px solid rgba(255,255,255,.08) !important;border-radius:22px !important;padding:30px !important}
.jc-product-specs h2,.jc-product-desc h2{font-size:30px !important;color:#fff !important;margin:0 0 22px !important;font-weight:900 !important;letter-spacing:-.4px !important}
.jc-spec-table{width:100% !important;border-collapse:separate !important;border-spacing:0 !important;border:1px solid rgba(148,163,184,.22) !important;border-radius:18px !important;overflow:hidden !important;background:#0b1320 !important}
.jc-spec-table th,.jc-spec-table td{border:0 !important;border-bottom:1px solid rgba(148,163,184,.18) !important;padding:18px 20px !important;font-size:20px !important;line-height:1.65 !important;vertical-align:middle !important}
.jc-spec-table th{width:30% !important;background:#071221 !important;color:#00d4ff !important;font-weight:900 !important;letter-spacing:.8px !important}
.jc-spec-table td{background:#0f1a2c !important;color:#eef6ff !important;font-weight:700 !important}
.jc-spec-table tr:last-child th,.jc-spec-table tr:last-child td{border-bottom:0 !important}
.jc-product-cta-row{display:flex !important;gap:12px !important;margin-top:24px !important}
.jc-product-cta-row a{flex:1 !important;min-height:56px !important;font-size:20px !important}
.jc-product-desc{margin-top:30px;background:linear-gradient(180deg,#111b2c,#0d1625) !important;border:1px solid rgba(148,163,184,.18) !important;border-radius:24px !important;padding:34px !important;color:#eef6ff !important}
.jc-product-desc #bo_v_con{font-size:20px !important;line-height:1.95 !important;color:#eef6ff !important;word-break:keep-all !important}
.jc-product-desc #bo_v_con,.jc-product-desc #bo_v_con *{color:#eef6ff !important;background:transparent !important;text-shadow:none !important}
.jc-product-desc #bo_v_con div,.jc-product-desc #bo_v_con p,.jc-product-desc #bo_v_con span{font-size:inherit !important;line-height:inherit !important}
.jc-product-desc #bo_v_con table{width:100% !important;border-collapse:separate !important;border-spacing:0 !important;overflow:hidden !important;border:1px solid rgba(148,163,184,.22) !important;border-radius:18px !important;background:#0b1320 !important;margin:18px 0 !important}
.jc-product-desc #bo_v_con th,.jc-product-desc #bo_v_con td{padding:16px 18px !important;border-bottom:1px solid rgba(148,163,184,.18) !important;border-right:0 !important;background:#0f1a2c !important;color:#eef6ff !important;font-size:19px !important;line-height:1.7 !important}
.jc-product-desc #bo_v_con th,.jc-product-desc #bo_v_con td:first-child{background:#071221 !important;color:#00d4ff !important;font-weight:900 !important}
.jc-product-desc #bo_v_con img{max-width:100% !important;height:auto !important;border-radius:16px !important;margin:16px 0 !important;background:#0b1320 !important}
#bo_v.jc-product-view #bo_v_top:empty,#bo_v.jc-product-view #bo_v_bot:empty{display:none !important}
#bo_v.jc-product-view #bo_v_img,#bo_v.jc-product-view #bo_v_con{background:transparent !important;color:#eef6ff !important}
#bo_v.jc-product-view header,#bo_v.jc-product-view .tbl_wrap{background:transparent !important;color:#eef6ff !important}
#bo_v.jc-product-view .tbl_frm01 table,#bo_v.jc-product-view table{background:#0b1320 !important;color:#eef6ff !important}
#bo_v.jc-product-view .tbl_frm01 th,#bo_v.jc-product-view .tbl_frm01 td{background:#0f1a2c !important;color:#eef6ff !important;border-color:rgba(148,163,184,.18) !important}

.jc-request-write{background:linear-gradient(180deg,#111b2c,#0d1625) !important;border:1px solid rgba(0,212,255,.18) !important;border-radius:26px !important;padding:44px !important}
.jc-request-intro{border-bottom:1px solid rgba(148,163,184,.18) !important}
.jc-request-intro h2{font-size:44px !important;color:#fff !important}
.jc-request-intro p{font-size:20px !important;color:#d2e2f6 !important}
.jc-field span{font-size:18px !important;color:#fff !important}
.jc-field input[type=text],.jc-field input[type=password],.jc-field input[type=file],.jc-field textarea{background:#070b12 !important;border:1px solid rgba(148,163,184,.24) !important;color:#fff !important;border-radius:14px !important}
.jc-file-box,.jc-captcha-box{background:#07101d !important;border:1px solid rgba(0,212,255,.2) !important;border-radius:16px !important;padding:18px !important;color:#eaf3ff !important}
.jc-file-box input[type=file]{padding:12px !important;min-height:62px !important;background:#0a1321 !important}
.jc-file-box input[type=file]::file-selector-button{border:0;border-radius:10px;background:linear-gradient(135deg,#1e8fff,#0066cc);color:#fff;font-weight:900;padding:12px 18px;margin-right:14px;cursor:pointer}
.jc-file-box p,.jc-captcha-help{margin:10px 0 0 !important;color:#9fb4ce !important;font-size:16px !important;line-height:1.6 !important}
.jc-captcha-box #captcha{display:flex !important;align-items:center !important;gap:10px !important;flex-wrap:wrap !important;background:transparent !important;border:0 !important;color:#fff !important}
.jc-captcha-box img{background:#fff !important;border-radius:10px !important;padding:4px !important;min-height:44px !important}
.jc-captcha-box input[type=text],.jc-captcha-box input[type=number],.jc-captcha-box .captcha_input{height:54px !important;min-width:220px !important;background:#050910 !important;border:1px solid rgba(148,163,184,.28) !important;border-radius:12px !important;color:#fff !important;font-size:22px !important;font-weight:800 !important;padding:0 16px !important}
.jc-captcha-box button,.jc-captcha-box a{display:inline-flex !important;align-items:center !important;justify-content:center !important;min-height:38px !important;padding:0 12px !important;border-radius:9px !important;background:#172236 !important;border:1px solid rgba(148,163,184,.22) !important;color:#fff !important;font-size:14px !important;text-decoration:none !important}
.jc-request-notice{background:rgba(0,212,255,.08) !important;border:1px solid rgba(0,212,255,.24) !important;color:#d9f7ff !important}
.jc-request-actions .btn_design1{background:linear-gradient(135deg,#1e8fff,#0066cc) !important;color:#fff !important}
.jc-request-actions .btn_design2{background:#172236 !important;color:#fff !important;border:1px solid rgba(148,163,184,.22) !important}
@media(max-width:1100px){.jc-product-detail-layout{grid-template-columns:1fr !important}.jc-product-photo.main{min-height:360px !important}.jc-product-thumb{height:300px !important}}
@media(max-width:700px){.jc-product-view-head{padding:26px 20px !important}.jc-product-view-head #bo_v_title{font-size:30px !important}.jc-product-detail-layout,.jc-product-desc{padding:20px !important}.jc-product-photos{grid-template-columns:1fr !important}.jc-product-photo,.jc-product-photo.main{min-height:260px !important}.jc-spec-table th,.jc-spec-table td{display:block !important;width:100% !important}.jc-product-cta-row{flex-direction:column !important}.jc-request-write{padding:28px 18px !important}.jc-captcha-box #captcha{align-items:flex-start !important}.jc-captcha-box input[type=text],.jc-captcha-box input[type=number],.jc-captcha-box .captcha_input{width:100% !important;min-width:0 !important}}

/* ===== 진컴퓨터 조립·중고PC/수리접수 최종 가독성 보정 ===== */
.jc-board-shell{min-height:420px;color:#eef6ff;background:#070b12}
.jc-board-shell a{color:#eaf6ff}
.jc-board-shell #bo_gall,.jc-board-shell #bo_v,.jc-board-shell #bo_w,.jc-board-shell #fwrite{color:#eef6ff !important;background:transparent !important}
.jc-board-shell #bo_v_title,.jc-board-shell #container_title{background:linear-gradient(180deg,#111b2c,#0d1625) !important;color:#fff !important;border:1px solid rgba(0,212,255,.18) !important;border-radius:18px !important;padding:24px 30px !important;font-size:32px !important;font-weight:900 !important;line-height:1.35 !important;text-align:left !important;text-shadow:none !important}
.jc-board-shell .tbl_frm01,.jc-board-shell .tbl_wrap{background:transparent !important;border-color:rgba(0,212,255,.25) !important;color:#eef6ff !important}
.jc-board-shell .tbl_frm01 table,.jc-board-shell table{background:#0b1320 !important;color:#eef6ff !important;border-collapse:separate !important;border-spacing:0 !important;border-radius:16px !important;overflow:hidden !important}
.jc-board-shell .tbl_frm01 th,.jc-board-shell table th{background:#071221 !important;color:#00d4ff !important;border-color:rgba(148,163,184,.2) !important;font-size:17px !important;font-weight:900 !important;padding:16px !important;text-shadow:none !important}
.jc-board-shell .tbl_frm01 td,.jc-board-shell table td{background:#0f1a2c !important;color:#eef6ff !important;border-color:rgba(148,163,184,.16) !important;font-size:17px !important;line-height:1.7 !important;padding:16px !important;text-shadow:none !important}
.jc-board-shell .tbl_frm01 td *,.jc-board-shell #bo_v_con,.jc-board-shell #bo_v_con *{color:#eef6ff !important;background:transparent !important;text-shadow:none !important}
.jc-board-shell input[type=text],.jc-board-shell input[type=password],.jc-board-shell input[type=file],.jc-board-shell textarea,.jc-board-shell select{background:#070b12 !important;color:#fff !important;border:1px solid rgba(148,163,184,.28) !important;border-radius:12px !important;min-height:44px !important;padding:10px 14px !important;box-sizing:border-box !important}
.jc-board-shell input::placeholder,.jc-board-shell textarea::placeholder{color:#7d91ad !important}
.jc-board-shell #bo_vc,.jc-board-shell #bo_vc_w{display:none !important}
.jc-board-shell img[src*="detail.png"]{display:none !important}
.jc-product-board .empty_list{grid-column:1/-1;background:#111b2c;border:1px dashed rgba(0,212,255,.32);border-radius:18px;padding:54px 20px;text-align:center;color:#d4e8ff;font-size:22px;font-weight:800;list-style:none}
.jc-product-toolbar{display:flex;align-items:center;justify-content:space-between;gap:16px;margin:0 0 28px;padding:24px 28px;border:1px solid rgba(0,212,255,.18);border-radius:20px;background:linear-gradient(180deg,#111b2c,#0d1625)}
.jc-product-toolbar strong{display:block;color:#fff;font-size:30px;font-weight:900;margin-bottom:6px}
.jc-product-toolbar span{display:block;color:#b9cbe4;font-size:17px;line-height:1.6}
.jc-product-write-btn{display:inline-flex;align-items:center;justify-content:center;min-height:54px;padding:0 24px;border-radius:14px;background:linear-gradient(135deg,#1e8fff,#0066cc);color:#fff !important;text-decoration:none;font-size:19px;font-weight:900;box-shadow:0 10px 30px rgba(30,143,255,.28);white-space:nowrap}
#bo_gall.jc-product-board #gall_ul.jc-product-grid{display:grid !important;grid-template-columns:repeat(auto-fit,minmax(320px,1fr)) !important;gap:28px !important;padding:0 !important;margin:0 !important;list-style:none !important}
#bo_gall.jc-product-board .jc-product-card{float:none !important;width:auto !important;margin:0 !important;padding:0 !important;border:0 !important;background:transparent !important;list-style:none !important}
#bo_gall.jc-product-board .jc-product-card-link{display:block;height:100%;padding:22px;background:linear-gradient(180deg,#111b2c,#0d1625);border:1px solid rgba(148,163,184,.18);border-radius:22px;text-decoration:none;color:#eef6ff !important;transition:.2s}
#bo_gall.jc-product-board .jc-product-card-link:hover{transform:translateY(-3px);border-color:rgba(0,212,255,.42);box-shadow:0 18px 54px rgba(0,0,0,.28)}
.jc-product-meta-row{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px;color:#9fb4ce;font-size:15px;font-weight:800}
.jc-product-cat{background:rgba(0,212,255,.1);border:1px solid rgba(0,212,255,.22);border-radius:999px;color:#00d4ff;padding:6px 10px}
.jc-product-price{font-size:21px;color:#fff;text-align:center;margin-bottom:14px;font-weight:800}.jc-product-price b{color:#ff8a1d;font-size:30px}
.jc-product-thumb{height:280px;border-radius:18px;overflow:hidden;background:#050910;border:1px solid rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;margin-bottom:20px}.jc-product-thumb img{width:100%;height:100%;object-fit:cover;display:block}.jc-product-thumb span{color:#6f829c;font-weight:900}
.jc-product-card h3{color:#fff !important;font-size:26px !important;line-height:1.45 !important;margin:0 0 14px !important;text-align:center;font-weight:900;word-break:keep-all}.jc-product-card p{color:#aebfd6 !important;font-size:17px !important;line-height:1.7 !important;margin:0;text-align:center}
.jc-product-view{max-width:1420px;margin:0 auto;color:#eef6ff}.jc-product-view-head{background:linear-gradient(180deg,#111b2c,#0d1625);border:1px solid rgba(0,212,255,.18);border-radius:24px;padding:34px 42px;margin-bottom:24px}.jc-product-view-head h1{color:#fff !important;font-size:40px !important;line-height:1.35 !important;margin:0 0 12px !important}.jc-product-view-head p{font-size:19px;color:#cfe0f5;margin:0}.jc-product-view-cat{display:inline-flex;margin-bottom:12px;color:#00d4ff;font-weight:900;letter-spacing:2px}
.jc-product-detail-layout{display:grid !important;grid-template-columns:minmax(420px,48%) minmax(0,52%) !important;gap:34px !important;align-items:start !important;background:linear-gradient(180deg,#101a2b,#0c1422) !important;border:1px solid rgba(148,163,184,.18) !important;border-radius:26px !important;padding:34px !important}.jc-product-photos{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.jc-product-photo{display:block;min-height:210px;background:#050910;border:1px solid rgba(255,255,255,.1);border-radius:18px;overflow:hidden}.jc-product-photo.main{grid-column:1/-1;min-height:420px}.jc-product-photo img{width:100%;height:100%;object-fit:cover;display:block}.jc-product-photo-empty{min-height:380px;display:flex;align-items:center;justify-content:center;border:1px dashed rgba(0,212,255,.35);border-radius:18px;color:#cfe0f5;font-size:20px}
.jc-product-specs{background:rgba(7,11,18,.76);border:1px solid rgba(255,255,255,.08);border-radius:22px;padding:30px}.jc-product-specs h2,.jc-product-desc h2{font-size:30px;color:#fff;margin:0 0 22px;font-weight:900}.jc-spec-table{width:100%;border-collapse:separate;border-spacing:0;border:1px solid rgba(148,163,184,.22);border-radius:18px;overflow:hidden;background:#0b1320}.jc-spec-table th,.jc-spec-table td{border:0;border-bottom:1px solid rgba(148,163,184,.18);padding:18px 20px;font-size:20px;line-height:1.65}.jc-spec-table th{width:30%;background:#071221;color:#00d4ff;font-weight:900}.jc-spec-table td{background:#0f1a2c;color:#eef6ff;font-weight:700}.jc-spec-table tr:last-child th,.jc-spec-table tr:last-child td{border-bottom:0}.jc-product-cta-row{display:flex;gap:12px;margin-top:24px}.jc-product-cta-row a{flex:1;min-height:56px;border-radius:14px;display:inline-flex;align-items:center;justify-content:center;text-decoration:none;font-size:20px;font-weight:900}.jc-product-cta-row .kakao{background:#fee500 !important;color:#111 !important}.jc-product-desc{margin-top:30px;background:linear-gradient(180deg,#111b2c,#0d1625);border:1px solid rgba(148,163,184,.18);border-radius:24px;padding:34px;color:#eef6ff}.jc-product-desc #bo_v_con{font-size:20px;line-height:1.95;color:#eef6ff;word-break:keep-all}.jc-view-actions-top,.jc-view-actions-bottom{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap;margin:0 0 24px}.jc-view-actions-bottom{margin:28px 0 0}.jc-view-actions-top a,.jc-view-actions-bottom a{min-height:46px;padding:0 18px;border-radius:12px;background:#172236;border:1px solid rgba(148,163,184,.22);color:#fff !important;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;font-weight:900}.jc-view-actions-top .btn_b02,.jc-view-actions-bottom .btn_b02{background:linear-gradient(135deg,#1e8fff,#0066cc);border:0}
@media(max-width:1100px){.jc-product-detail-layout{grid-template-columns:1fr !important}.jc-product-photo.main{min-height:340px}}@media(max-width:700px){.jc-product-toolbar{flex-direction:column;align-items:flex-start}.jc-product-detail-layout,.jc-product-desc,.jc-product-view-head{padding:22px}.jc-product-view-head h1{font-size:30px !important}.jc-product-photos{grid-template-columns:1fr}.jc-product-photo,.jc-product-photo.main{min-height:240px}.jc-spec-table th,.jc-spec-table td{display:block;width:100%}.jc-product-cta-row{flex-direction:column}}


/* ===== 2026-04-28 모바일 상품목록/상세 노출 보정 ===== */
@media (max-width: 900px){
  .jc-product-mobile-shell{padding-top:28px !important;}
  #bo_gall.jc-product-board{display:block !important;width:100% !important;margin:0 !important;padding:0 !important;}
  #bo_gall.jc-product-board .jc-product-toolbar{display:flex !important;flex-direction:row !important;align-items:center !important;justify-content:space-between !important;gap:18px !important;margin:0 0 24px !important;padding:24px !important;border-radius:22px !important;background:linear-gradient(180deg,#111b2c,#0d1625) !important;border:1px solid rgba(0,212,255,.22) !important;}
  #bo_gall.jc-product-board .jc-product-toolbar strong{font-size:36px !important;color:#fff !important;}
  #bo_gall.jc-product-board .jc-product-toolbar span{font-size:26px !important;color:#c8d6e8 !important;line-height:1.6 !important;}
  #bo_gall.jc-product-board .jc-product-write-btn{min-height:62px !important;font-size:28px !important;border-radius:16px !important;padding:0 24px !important;}
  #bo_gall.jc-product-board #gall_ul.jc-product-grid{display:grid !important;grid-template-columns:1fr !important;gap:26px !important;margin:0 !important;padding:0 !important;}
  #bo_gall.jc-product-board .jc-product-card{display:block !important;width:100% !important;margin:0 !important;float:none !important;clear:none !important;opacity:1 !important;visibility:visible !important;}
  #bo_gall.jc-product-board .jc-product-card-link{display:block !important;padding:26px !important;border-radius:24px !important;background:linear-gradient(180deg,#111b2c,#0d1625) !important;border:1px solid rgba(148,163,184,.2) !important;color:#eef6ff !important;}
  #bo_gall.jc-product-board .jc-product-meta-row{font-size:24px !important;margin-bottom:14px !important;}
  #bo_gall.jc-product-board .jc-product-price{font-size:30px !important;margin-bottom:18px !important;color:#fff !important;}
  #bo_gall.jc-product-board .jc-product-price b{font-size:38px !important;color:#ff8a1d !important;}
  #bo_gall.jc-product-board .jc-product-thumb{height:360px !important;border-radius:20px !important;margin-bottom:22px !important;}
  #bo_gall.jc-product-board .jc-product-card h3{font-size:34px !important;line-height:1.42 !important;margin-bottom:16px !important;color:#fff !important;text-align:center !important;}
  #bo_gall.jc-product-board .jc-product-card p{font-size:26px !important;line-height:1.65 !important;color:#c8d6e8 !important;text-align:center !important;}
  .jc-product-board .empty_list{font-size:30px !important;padding:52px 20px !important;}
  .jc-product-detail-layout{grid-template-columns:1fr !important;gap:26px !important;padding:24px !important;}
  .jc-product-photos{min-height:420px !important;}
  .jc-product-specs{min-height:auto !important;}
}

/* ===== JC 2026-04-28 긴급 수정: 모바일 폰트 원복 + 조립중고PC 목록 바로 노출 ===== */
/* 이전 패치의 모바일 2단계 확대값을 덮어써서 기존 모바일 비율로 원복 */
@media (max-width: 900px){
  body{font-size:16px !important;line-height:1.6 !important;overflow-x:hidden !important;}
  #m-header{height:76px !important;padding:0 20px !important;}
  #m-header .m-logo img{height:54px !important;max-width:176px !important;object-fit:contain !important;}
  .m-menu-btn{padding:10px !important;gap:7px !important;}
  .m-menu-btn span{width:30px !important;height:3px !important;}
  #m-nav{padding-top:76px !important;max-width:340px !important;}
  #m-content{margin-top:76px !important;}
  .m-nav-section-title{font-size:14px !important;}
  .m-nav-link{font-size:20px !important;min-height:54px !important;}
  .m-nav-cta,.m-nav-kakao{font-size:19px !important;min-height:58px !important;}
  .m-page-visual{padding:40px 22px !important;}
  .m-page-tag,.m-tag{font-size:14px !important;letter-spacing:3px !important;}
  .m-page-visual h2{font-size:38px !important;line-height:1.18 !important;}
  .m-page-visual p{font-size:18px !important;line-height:1.55 !important;}
  #m-lnb a,.m-tab-nav a{font-size:19px !important;padding:16px 22px !important;}
  .m-wrap{padding:34px 22px !important;}
  .m-title{font-size:34px !important;line-height:1.22 !important;}
  .m-desc,.m-card-desc,.m-highlight p{font-size:18px !important;}
  .m-card{padding:24px !important;border-radius:18px !important;}
  .m-card-title,.m-info-box h3{font-size:26px !important;}
  .m-table th,.m-table td{font-size:16px !important;padding:14px 12px !important;}
  .m-step-text h4{font-size:22px !important}.m-step-text p{font-size:17px !important;}
  .m-price-card h4{font-size:26px !important}.m-price-item{font-size:21px !important}.m-price-item .price{font-size:24px !important;}
  .btn-m-primary,.btn-m-kakao,.btn-m-orange{font-size:24px !important;min-height:62px !important;}
  .m-float{right:14px !important;bottom:20px !important}.m-float-kakao,.m-float-phone{width:64px !important;height:64px !important;font-size:34px !important;}
}

/* 조립·중고PC 게시판 상단을 낮춰서 PC/모바일 모두 상품 리스트가 바로 보이게 */
.page-visual.jc-product-visual{margin-top:80px !important;padding:72px 40px 44px !important;}
.page-visual.jc-product-visual h2{font-size:clamp(42px,4vw,64px) !important;line-height:1.1 !important;}
.page-visual.jc-product-visual p{font-size:20px !important;}
.jc-board-shell{padding-top:24px !important;}
#bo_gall.jc-product-board{display:block !important;width:100% !important;margin:0 !important;padding:0 !important;opacity:1 !important;visibility:visible !important;}
#bo_gall.jc-product-board .jc-product-toolbar{margin:0 0 18px !important;}
#bo_gall.jc-product-board #gall_ul.jc-product-grid{display:grid !important;visibility:visible !important;opacity:1 !important;grid-template-columns:repeat(auto-fit,minmax(300px,1fr)) !important;gap:24px !important;margin:0 !important;padding:0 !important;list-style:none !important;}
#bo_gall.jc-product-board .jc-product-card{display:block !important;visibility:visible !important;opacity:1 !important;float:none !important;clear:none !important;width:auto !important;min-height:0 !important;}
#bo_gall.jc-product-board .jc-product-card-link{display:block !important;color:#eef6ff !important;}

@media (max-width:900px){
  .jc-board-mobile-visual.jc-product-visual{padding:28px 22px 24px !important;background:linear-gradient(135deg,#0d1520,#111827) !important;border-bottom:1px solid rgba(255,255,255,.12) !important;}
  .jc-board-mobile-visual.jc-product-visual .m-page-tag{font-size:13px !important;letter-spacing:3px !important;color:#00d4ff !important;font-weight:900 !important;margin-bottom:8px !important;display:block !important;}
  .jc-board-mobile-visual.jc-product-visual h2{font-size:36px !important;line-height:1.18 !important;margin:0 0 8px !important;color:#fff !important;}
  .jc-board-mobile-visual.jc-product-visual p{font-size:17px !important;line-height:1.5 !important;margin:0 !important;color:#dce7f7 !important;}
  .jc-board-mobile-nav{display:flex !important;align-items:center !important;gap:18px !important;overflow-x:auto !important;white-space:nowrap !important;background:#111827 !important;border-bottom:1px solid rgba(255,255,255,.12) !important;padding:0 18px !important;}
  .jc-board-mobile-nav a{display:inline-flex !important;align-items:center !important;justify-content:center !important;min-height:58px !important;color:#fff !important;font-size:18px !important;font-weight:900 !important;text-decoration:none !important;border-bottom:3px solid transparent !important;padding:0 8px !important;}
  .jc-board-mobile-nav a.on{color:#00d4ff !important;border-bottom-color:#00d4ff !important;}
  .jc-board-mobile-nav .jc-write-link{margin-left:auto !important;background:#1e8fff !important;color:#fff !important;border:0 !important;border-radius:12px !important;min-height:44px !important;padding:0 16px !important;font-size:17px !important;box-shadow:0 6px 20px rgba(30,143,255,.35) !important;}
  .jc-board-shell,.jc-product-mobile-shell{padding:18px 16px 30px !important;min-height:0 !important;}
  #bo_gall.jc-product-board .jc-product-toolbar{display:flex !important;flex-direction:row !important;align-items:center !important;justify-content:space-between !important;gap:10px !important;margin:0 0 16px !important;padding:16px !important;border-radius:16px !important;}
  #bo_gall.jc-product-board .jc-product-toolbar strong{font-size:22px !important;color:#fff !important;}
  #bo_gall.jc-product-board .jc-product-toolbar span{display:none !important;}
  #bo_gall.jc-product-board .jc-product-write-btn{min-height:42px !important;font-size:16px !important;border-radius:10px !important;padding:0 14px !important;}
  #bo_gall.jc-product-board #gall_ul.jc-product-grid{display:grid !important;grid-template-columns:1fr !important;gap:16px !important;margin:0 !important;padding:0 !important;}
  #bo_gall.jc-product-board .jc-product-card{display:block !important;width:100% !important;margin:0 !important;}
  #bo_gall.jc-product-board .jc-product-card-link{padding:18px !important;border-radius:18px !important;}
  #bo_gall.jc-product-board .jc-product-meta-row{font-size:14px !important;margin-bottom:10px !important;}
  #bo_gall.jc-product-board .jc-product-price{font-size:18px !important;margin-bottom:12px !important;}
  #bo_gall.jc-product-board .jc-product-price b{font-size:25px !important;}
  #bo_gall.jc-product-board .jc-product-thumb{height:230px !important;border-radius:14px !important;margin-bottom:16px !important;}
  #bo_gall.jc-product-board .jc-product-card h3{font-size:22px !important;line-height:1.45 !important;margin:0 0 10px !important;}
  #bo_gall.jc-product-board .jc-product-card p{font-size:15px !important;line-height:1.6 !important;}
  .jc-product-board .empty_list{font-size:18px !important;padding:36px 14px !important;}
}

/* 조립·중고PC 글쓰기: 내용필수 에디터 내부 글씨를 흰색으로 강제 */
.jc-board-shell .wr_content,
.jc-board-shell .wr_content *,
.jc-board-shell #wr_content,
.jc-board-shell iframe[name*="wr_content"],
.jc-board-shell iframe[id*="wr_content"]{color:#eef6ff !important;caret-color:#ffffff !important;}
.jc-board-shell .wr_content iframe{background:#0f1a2c !important;}


/* sub0205 중고컴퓨터 매입 작업글: CHEditor 대신 일반 textarea 사용 시 본문 입력칸 가독성 보정 */
body.bo_table_sub0205 #bo_w #wr_content,
body.bo_table_sub0205 .jc-board-shell #bo_w #wr_content,
body.bo_table_sub0205 .tbl_frm01 #wr_content {
    display:block !important;
    width:100% !important;
    min-height:520px !important;
    padding:20px 22px !important;
    border:1px solid rgba(255,255,255,.25) !important;
    border-radius:14px !important;
    background:#05090f !important;
    color:#ffffff !important;
    caret-color:#ffffff !important;
    font-family:'Malgun Gothic','맑은 고딕','Apple SD Gothic Neo','Noto Sans KR',sans-serif !important;
    font-size:18px !important;
    font-weight:500 !important;
    line-height:1.75 !important;
    letter-spacing:-.02em !important;
    resize:vertical !important;
    box-sizing:border-box !important;
    outline:none !important;
}
body.bo_table_sub0205 #bo_w #wr_content:focus,
body.bo_table_sub0205 .jc-board-shell #bo_w #wr_content:focus {
    border-color:#00d4ff !important;
    box-shadow:0 0 0 3px rgba(0,212,255,.16) !important;
}
body.bo_table_sub0205 #bo_w #wr_content::placeholder {
    color:rgba(255,255,255,.5) !important;
}
body.bo_table_sub0205 #bo_w .wr_content .sound_only + textarea,
body.bo_table_sub0205 #bo_w .wr_content textarea {
    color:#ffffff !important;
    background:#05090f !important;
}

/* JC 2026-06-12 최종 수정: 모바일에서는 큰 PC용 카톡/전화 플로팅 버튼을 무조건 숨김 */
@media (max-width:900px){
  body .float-btns,
  body .float-kakao,
  body .float-phone{
    display:none !important;
    visibility:hidden !important;
    opacity:0 !important;
    pointer-events:none !important;
  }
}
