/* ============================================
   ㈜익성전자 (IKSUNG ELECTRONICS) 테마
   Tech Blue 디자인 시스템 (PC + 모바일 반응형)
   2026-05-08 제작
   ============================================ */

:root {
  --primary: #0E3A8A;
  --primary-dark: #0A2C6E;
  --accent: #1E88E5;
  --accent-light: #E3F2FD;
  --bg: #FFFFFF;
  --bg-sub: #F5F7FA;
  --bg-darker: #2C3441;
  --text: #1A2233;
  --text-mute: #5A6478;
  --border: #E2E6EC;
  --grad: linear-gradient(135deg, #0E3A8A 0%, #1E88E5 100%);
  --shadow-sm: 0 1px 3px rgba(14, 58, 138, 0.08);
  --shadow-md: 0 4px 16px rgba(14, 58, 138, 0.12);
  --shadow-lg: 0 16px 40px rgba(14, 58, 138, 0.18);
  --radius: 12px;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard', 'Malgun Gothic', '맑은 고딕', 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* 그누보드 sound_only 호환 */
.sound_only, .sr-only {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}
#skip_to_container { position: absolute; left: -9999px; }
#skip_to_container a:focus { left: 0; top: 0; padding: 8px; background: var(--primary); color: white; z-index: 9999; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 92px;
  gap: 16px;
}
.logo svg { height: 60px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav a {
  padding: 10px 14px; font-size: 15px; font-weight: 500;
  color: var(--text); border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav a:hover { background: var(--bg-sub); color: var(--primary); }
.nav a.cta {
  background: var(--primary); color: white;
  font-weight: 600; margin-left: 8px;
}
.nav a.cta:hover { background: var(--primary-dark); }

.header-util { display: flex; gap: 12px; align-items: center; font-size: 13px; }
.util-text { color: var(--text-mute); }
.util-link { color: var(--text-mute); }
.util-link:hover { color: var(--primary); }

.menu-btn {
  display: none; padding: 8px; border-radius: 6px;
  color: var(--text);
}
.menu-btn:hover { background: var(--bg-sub); }
.menu-btn svg { width: 28px; height: 28px; }

/* ===== HERO (메인) ===== */
.hero {
  position: relative;
  padding: 24px 0 28px;
  background: linear-gradient(135deg, #0A2C6E 0%, #0E3A8A 50%, #1E88E5 100%);
  color: white;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px;
  background-image:
    radial-gradient(circle, transparent 30%, rgba(255,255,255,0.05) 30.5%, rgba(255,255,255,0.05) 31%, transparent 31.5%),
    radial-gradient(circle, transparent 45%, rgba(255,255,255,0.05) 45.5%, rgba(255,255,255,0.05) 46%, transparent 46.5%),
    radial-gradient(circle, transparent 60%, rgba(255,255,255,0.05) 60.5%, rgba(255,255,255,0.05) 61%, transparent 61.5%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero-tag {
  display: inline-block; padding: 4px 10px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px; font-size: 11px; font-weight: 500;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.hero h1 strong { color: #FFD56B; font-weight: 800; }
.hero p {
  font-size: clamp(13px, 1.2vw, 15px);
  opacity: 0.85; max-width: 560px;
  margin-bottom: 14px;
}
.hero-cta { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-cta .btn {
  padding: 7px 14px;
  font-size: 13px;
  border-radius: 8px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary { background: white; color: var(--primary); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn.solid { background: var(--primary); color: white; }
.btn.solid:hover { background: var(--primary-dark); }
.btn.line { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn.line:hover { background: var(--primary); color: white; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ===== HERO STATS (컴팩트 버전) ===== */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  max-width: 720px;
}
.hero-stats .stat {
  text-align: left;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-stats .stat:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.hero-stats .stat-num {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: #FFD56B;
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
}
.hero-stats .stat-text-wrap { display: flex; flex-direction: column; }
.hero-stats .stat-label {
  font-size: 10px; font-weight: 700; color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px; text-transform: uppercase; line-height: 1.2;
}
.hero-stats .stat-desc {
  font-size: 11px; color: rgba(255, 255, 255, 0.85);
  margin-top: 1px; font-weight: 500; line-height: 1.3;
}

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section.alt { background: var(--bg-sub); }
.section-head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 16px; color: var(--text);
}
.section h2 strong { color: var(--primary); }
.section-desc {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-mute);
}

/* ===== Business cards (4) ===== */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.biz-card {
  padding: 32px 24px; background: white;
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: all 0.3s;
}
.biz-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent); box-shadow: var(--shadow-md);
}
.biz-icon {
  width: 56px; height: 56px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}
.biz-icon-num {
  background: var(--grad);
  color: white;
  font-family: 'Consolas', 'Courier New', monospace;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -1px;
}
.biz-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.biz-card p { font-size: 14px; color: var(--text-mute); line-height: 1.6; }

/* ===== Product cards (3) ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.3s;
}
.product-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.product-img {
  height: 220px;
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-img .pid {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 32px; font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
}
.product-img .badge {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 10px; background: var(--primary); color: white;
  border-radius: 999px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.5px;
}
.product-img .badge.new { background: #FF6B35; }
.product-info { padding: 24px; }
.product-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.product-info .cat { font-size: 13px; color: var(--accent); font-weight: 600; }
.product-info p { font-size: 14px; color: var(--text-mute); margin: 12px 0; }
.product-info ul { padding: 0; }
.product-info li {
  font-size: 13px; padding: 4px 0;
  display: flex; align-items: center; gap: 6px;
  color: var(--text);
}
.product-info li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ===== Trust ===== */
.trust-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.trust-text blockquote {
  padding: 24px; background: var(--bg-sub);
  border-left: 4px solid var(--accent);
  border-radius: 8px; font-style: italic;
  color: var(--text); margin: 24px 0;
  font-size: 16px; line-height: 1.7;
}
.trust-text blockquote cite {
  display: block; margin-top: 12px;
  font-style: normal; font-size: 13px; color: var(--text-mute);
  font-weight: 600;
}
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cert-card {
  padding: 32px 16px; background: white;
  border: 2px solid var(--border); border-radius: var(--radius);
  text-align: center; transition: all 0.2s;
}
.cert-card:hover { border-color: var(--accent); }
.cert-card .name {
  font-size: 28px; font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cert-card .label { font-size: 12px; color: var(--text-mute); margin-top: 6px; font-weight: 500; }

/* ===== CTA Section ===== */
.cta-section {
  padding: 80px 0;
  background: var(--grad);
  color: white; text-align: center;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-section p {
  opacity: 0.9; font-size: 17px; margin-bottom: 32px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.cta-section .btn { background: white; color: var(--primary); }
.cta-section .btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.6); }

/* ===== Page Hero (서브페이지) ===== */
.page-hero {
  padding: 80px 0 64px;
  background: linear-gradient(135deg, #0A2C6E 0%, #0E3A8A 50%, #1E88E5 100%);
  color: white; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px;
  background-image:
    radial-gradient(circle, transparent 30%, rgba(255,255,255,0.05) 30.5%, rgba(255,255,255,0.05) 31%, transparent 31.5%),
    radial-gradient(circle, transparent 45%, rgba(255,255,255,0.05) 45.5%, rgba(255,255,255,0.05) 46%, transparent 46.5%),
    radial-gradient(circle, transparent 60%, rgba(255,255,255,0.05) 60.5%, rgba(255,255,255,0.05) 61%, transparent 61.5%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { font-size: 13px; opacity: 0.7; margin-bottom: 16px; }
.breadcrumb a:hover { opacity: 1; }
.page-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 12px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-darker); color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { margin-top: 16px; line-height: 1.7; font-size: 13px; }
.footer-col h4 {
  color: white; font-size: 14px; font-weight: 700;
  margin-bottom: 16px; letter-spacing: 0.5px;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a:hover { color: white; }
.footer-policy {
  display: flex; flex-wrap: wrap; gap: 6px 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}
.footer-policy a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-policy a:hover { color: white; }
.footer-policy a strong { color: white; font-weight: 700; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}

/* ===== 그누보드 게시판/콘텐츠 영역 기본 보정 ===== */
#container { min-height: 400px; }
#container_title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800; color: var(--primary);
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
}

/* ===== 자료실 인덱스 카드 (필터 우회용 외부 CSS) ===== */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.dl-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(14,58,138,0.08);
  transition: all 0.3s;
  display: block;
  text-decoration: none !important;
  color: inherit;
}
.dl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14,58,138,0.18);
}
.dl-card-header {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
}
.dl-card-header .big {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}
.dl-card-header .small {
  font-size: 13px;
  opacity: 0.9;
  letter-spacing: 2px;
  margin-top: 6px;
}
.dl-card-cat .dl-card-header { background: linear-gradient(135deg, #FF6B35, #FF4757); }
.dl-card-doc .dl-card-header { background: linear-gradient(135deg, #0E3A8A, #1E88E5); }
.dl-card-sdk .dl-card-header { background: linear-gradient(135deg, #2E7D32, #66BB6A); }
.dl-card-body { padding: 24px; }
.dl-card-body h3 { color: var(--primary); font-size: 20px; margin: 0 0 8px; }
.dl-card-body p { font-size: 14px; color: var(--text-mute); margin-bottom: 16px; line-height: 1.6; }
.dl-tag {
  display: inline-block;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  margin-right: 4px;
  margin-bottom: 4px;
}
.dl-tag-cat { background: #FFE5DC; color: #FF4757; }
.dl-tag-doc { background: #E3F2FD; color: #0E3A8A; }
.dl-tag-sdk { background: #E8F5E9; color: #2E7D32; }
.dl-card-link {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--bg-sub);
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute; top: 92px; left: 0; right: 0;
    background: white; flex-direction: column;
    padding: 16px; gap: 4px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; }
  .header-util { display: none; }
  .menu-btn { display: block; }
  .hero { padding: 64px 0 80px; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
  .product-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 56px 0; }
  .page-hero { padding: 56px 0 48px; }
}
@media (max-width: 480px) {
  .biz-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ===== 게시판 본문 안 글 제목·작성자·댓글 숨김 (버튼은 살림) ===== */
#bo_v_title,
#bo_v_info .profile_info,
#bo_vc,
#bo_v_act,
.cmt_btn,
#bo_vc_w,
#bo_vc_empty {
  display: none !important;
}

/* ===== 갤러리 목록 — 작성자·내용·옵션 숨김 (썸네일 + 제목만 살림) ===== */
#bo_gall .gall_info,
#bo_gall .gall_date,
#bo_gall .gall_option,
#bo_gall .gall_view,
#bo_gall .gall_chk,
#bo_gall .bo_cnt {
  display: none !important;
}
/* 제목 영역 가운데 정렬 + 글자 다듬기 */
#bo_gall .gall_text_href {
  text-align: center;
  padding: 12px 8px;
}
#bo_gall .gall_text_href a.bo_tit {
  color: #0E3A8A;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

/* ===== 게시판·서브페이지 한글 줄바꿈·모바일 가독성 ===== */
.page-hero h1,
#bo_v_title,
.bo_v_tit,
#bo_v_atc_title,
#bo_v_con,
#bo_v_con table,
#bo_v_con p,
#bo_v_con h3,
#ctt_con,
#ctt_con table,
#ctt_con p,
#ctt_con h2,
#ctt_con h3 {
  word-break: keep-all;
  overflow-wrap: break-word;
}

#bo_v_con table,
#ctt_con table {
  table-layout: fixed;
  width: 100% !important;
}

#bo_v_con img,
#ctt_con img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  /* 외곽 카드 그리드 테이블만 (border-spacing 가진 것) — 모바일에서 세로 스택. 카드 안쪽 테이블은 영향 X */
  #ctt_con table[style*="border-spacing"],
  #ctt_con table[style*="border-spacing"] > tbody,
  #ctt_con table[style*="border-spacing"] > tbody > tr,
  #ctt_con table[style*="border-spacing"] > tbody > tr > td {
    display: block !important;
    width: 100% !important;
  }
  #ctt_con table[style*="border-spacing"] > tbody > tr > td {
    margin-bottom: 20px;
    padding: 0 !important;
  }

  /* 갤러리 게시판 목록 — 모바일에서 가로 행 리스트로 (ACS 스타일) */
  #bo_gall #gall_ul,
  .gall_row {
    margin: 0 !important;
    padding: 0 !important;
  }
  #bo_gall .gall_li,
  .gall_row .gall_li.col-gn-3,
  .gall_row .gall_li.col-gn-2,
  .gall_row .gall_li.col-gn-4 {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #E2E6EC !important;
  }
  #bo_gall .gall_li .gall_box {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 12px !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
  }
  #bo_gall .gall_li .gall_img {
    flex: 0 0 70px !important;
    width: 70px !important;
    height: 70px !important;
    max-height: 70px !important;
    min-height: 70px !important;
    margin: 0 !important;
    border: 1px solid #E2E6EC !important;
    overflow: hidden !important;
    line-height: normal !important;
  }
  #bo_gall .gall_li .gall_img a,
  #bo_gall .gall_li .gall_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    line-height: normal !important;
  }
  #bo_gall .gall_li .gall_con {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    width: auto !important;
  }
  #bo_gall .gall_li .gall_text_href,
  #bo_gall .gall_li .gall_text_href a {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #0E3A8A !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
  }
  #bo_gall .gall_li .gall_info,
  #bo_gall .gall_li .gall_option,
  #bo_gall .gall_li .gall_date,
  #bo_gall .gall_li .gall_chk {
    display: none !important;
  }
  .page-hero { padding: 48px 0 36px; }
  .page-hero h1 {
    font-size: 22px !important;
    line-height: 1.35 !important;
  }
  #bo_v_title,
  .bo_v_tit {
    font-size: 20px !important;
    line-height: 1.35 !important;
  }
  #bo_v_con,
  #ctt_con { font-size: 14px; }
  #bo_v_con table,
  #ctt_con table { font-size: 13px; }
  #bo_v_con td,
  #ctt_con td { padding: 6px 10px !important; }
  #bo_v_con h2,
  #ctt_con h2 { font-size: 20px !important; }
  #bo_v_con h3,
  #ctt_con h3 { font-size: 16px !important; }
}

@media (max-width: 480px) {
  .page-hero { padding: 36px 0 28px; }
  .page-hero h1 { font-size: 18px !important; }
  #bo_v_title,
  .bo_v_tit { font-size: 18px !important; }
  #bo_v_con table,
  #ctt_con table { font-size: 12px; }
  #bo_v_con td,
  #ctt_con td { padding: 5px 8px !important; }
}
