/* =====================================================
   공유공유 메인 CSS
   경로: /var/www/html/theme/gongyu/css/gongyu.css
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Gaegu:wght@400;700&family=Noto+Sans+KR:wght@400;500;700&display=swap');
#login_area, .login_area, #access_menu, #accessdenied, #hd_login_msg { display:none !important; }

/* ── CSS 변수 ── */
:root {
  --sky:      #B8D8F0;
  --sky-d:    #4BAEE8;
  --sky-dk:   #1E7BB5;
  --peach:    #F4956A;
  --peach-dk: #C05A28;
  --peach-lt: #FDE8DA;
  --mint-d:   #3BAD7A;
  --yellow:   #FFE8A0;
  --yellow-d: #E8A800;
  --lav-d:    #7C5CC4;

  /* 배경: 흰색/베이지 */
  --bg:    #FFFFFF;
  --bg2:   #FAF8F5;       /* 연베이지 */
  --bg3:   #F5F2EE;       /* 베이지 */
  --line:  #E8E0D8;
  --line2: #F0EBE4;

  /* 텍스트 */
  --text:  #2A2018;
  --text2: #6A5848;
  --text3: #A89080;

  --white: #FFFFFF;
  --r:     14px;
  --shadow: 0 2px 12px rgba(180,140,100,.10);
  --shadow-md: 0 4px 20px rgba(180,140,100,.14);
}

/* ── 리셋 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: 'Noto Sans KR', sans-serif; cursor: pointer; }
input, select, textarea { font-family: 'Noto Sans KR', sans-serif; }

/* ════════════════════════
   헤더
════════════════════════ */
#gw-header {
  background: var(--white);
  border-bottom: 1.5px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 1px 8px rgba(180,140,100,.06);
}
.gw-hd-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 20px;
  gap: 0;
}

/* 로고 */
.gw-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  cursor: pointer;
}
.gw-logo-txt {
  font-family: 'Gaegu', cursive;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
}
.gw-logo-txt .lt { color: var(--sky-dk); }
.gw-logo-txt .rt { color: var(--peach-dk); }

/* 네비 */
.gw-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 22px;
  flex: 1;
}
.gw-nav-a {
  display: flex;
  align-items: center;
  padding: 6px 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text2);
  border-radius: 9px;
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.gw-nav-a:hover { background: var(--bg3); color: var(--peach-dk); }
.gw-nav-a.on { background: var(--peach-lt); color: var(--peach-dk); font-weight: 700; }
.gw-nbadge {
  font-size: 10px;
  background: var(--peach);
  color: white;
  padding: 1px 5px;
  border-radius: 5px;
  margin-left: 4px;
  vertical-align: 1px;
}

/* 헤더 우측 */
.gw-hd-r {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
}
.gw-pt-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--yellow);
  color: #7A5000;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity .12s;
  white-space: nowrap;
}
.gw-pt-chip:hover { opacity: .85; }
.gw-hbtn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: all .12s;
  display: inline-block;
}
.gw-hbtn-out {
  border: 1.5px solid var(--peach);
  color: var(--peach-dk);
  background: transparent;
}
.gw-hbtn-out:hover { background: var(--peach); color: white; }
.gw-hbtn-fill {
  background: var(--peach-dk);
  border: 1.5px solid var(--peach-dk);
  color: white;
}
.gw-hbtn-fill:hover { opacity: .87; }

/* 햄버거 버튼 */
.gw-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.gw-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: all .2s;
}

/* 모바일 메뉴 */
.gw-mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1.5px solid var(--line);
  z-index: 250;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .22s, opacity .22s;
  pointer-events: none;
}
.gw-mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.gw-mobile-nav-inner { padding: 14px 20px 18px; }
.gw-mobile-nav-a {
  display: block;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line2);
}
.gw-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 200;
}
.gw-overlay.open { display: block; }

/* ════════════════════════
   공통 레이아웃
════════════════════════ */
#gw-wrap { min-height: calc(100vh - 64px - 140px); }
.gw-inner { max-width: 1120px; margin: 0 auto; padding: 28px 20px; }
.gw-grid { display: grid; grid-template-columns: 1fr 264px; gap: 22px; }
.gw-grid-full { max-width: 1120px; margin: 0 auto; padding: 28px 20px; }

/* ════════════════════════
   섹션 타이틀
════════════════════════ */
.gw-sec-title {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--text);
}
.gw-sec-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 18px;
  background: var(--peach);
  border-radius: 2px;
}

/* ════════════════════════
   히어로 섹션
════════════════════════ */
.gw-hero {
  background: var(--bg2);
  border-bottom: 1.5px solid var(--line);
  padding: 44px 20px 38px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(184,216,240,.25) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(244,149,106,.15) 0%, transparent 60%);
  pointer-events: none;
}
.gw-hero-deco {
  position: absolute;
  font-size: 18px;
  opacity: .2;
  animation: gw-float 4s ease-in-out infinite;
}
@keyframes gw-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* 곰돌이 영역 */
.gw-bears {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}
.gw-bear {
  animation: gw-float 3.5s ease-in-out infinite;
  display: block;
}
.gw-bear:nth-child(2) { animation-delay: .45s; }

.gw-hero-title {
  font-family: 'Gaegu', cursive;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.gw-hero-title .lt { color: var(--sky-dk); }
.gw-hero-title .rt { color: var(--peach-dk); }
.gw-hero-sub { font-size: 14px; color: var(--text2); margin-bottom: 8px; }
.gw-hero-tag {
  display: inline-block;
  background: var(--yellow);
  color: #7A5000;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 26px;
}

/* 검색 박스 */
.gw-srch-box {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.gw-srch-r1 { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 8px; }
.gw-srch-r2 { display: grid; grid-template-columns: repeat(4,1fr) 90px; gap: 8px; }
.gw-sel {
  width: 100%;
  padding: 8px 28px 8px 10px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-size: 13px;
  color: var(--text);
  background: var(--bg2);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23F4956A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 9px center;
  cursor: pointer;
}
.gw-sel:focus { outline: none; border-color: var(--peach); }
.gw-srch-btn {
  width: 100%;
  padding: 9px;
  background: var(--peach-dk);
  color: white;
  border: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity .12s;
}
.gw-srch-btn:hover { opacity: .88; }

/* 특징 아이콘 행 */
.gw-feat-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.gw-feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text2);
}
.gw-feat-ico {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.gfi-s { background: var(--sky); }
.gfi-p { background: var(--peach-lt); }
.gfi-y { background: var(--yellow); }
.gfi-m { background: #C8F0E0; }
.gfi-l { background: #E8E0F8; }

/* ════════════════════════
   탭
════════════════════════ */
.gw-tabs { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.gw-tab {
  padding: 6px 16px;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  background: white;
  cursor: pointer;
  transition: all .12s;
  text-decoration: none;
  display: inline-block;
}
.gw-tab:hover, .gw-tab.on { background: var(--peach-dk); border-color: var(--peach-dk); color: white; }

/* ════════════════════════
   카드
════════════════════════ */
.gw-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  margin-bottom: 14px;
}
.gw-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ════════════════════════
   버튼
════════════════════════ */
.gw-btn-full {
  display: block;
  width: 100%;
  padding: 11px;
  background: var(--peach-dk);
  color: white;
  border: none;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: opacity .12s;
  margin-bottom: 8px;
}
.gw-btn-full:hover { opacity: .88; }
.gw-btn-full.sky  { background: var(--sky-dk); }
.gw-btn-full.mint { background: var(--mint-d); }
.gw-btn-full.gray { background: var(--text3); }

/* ════════════════════════
   폼 요소
════════════════════════ */
.gw-inp {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-size: 13px;
  color: var(--text);
  background: var(--bg2);
  transition: border-color .12s;
}
.gw-inp:focus { outline: none; border-color: var(--peach); background: white; }
.gw-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 5px;
}
.gw-req { color: var(--peach-dk); margin-left: 2px; }
.gw-form-row { margin-bottom: 13px; }
.gw-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gw-grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.gw-grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.gw-form-help { font-size: 11px; color: var(--text3); margin-top: 4px; }

/* ════════════════════════
   공지 바
════════════════════════ */
.gw-notice {
  background: #FFFBEA;
  border: 1.5px solid #F0D060;
  border-radius: 11px;
  padding: 10px 15px;
  font-size: 13px;
  color: #7A5000;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ════════════════════════
   포인트 관련
════════════════════════ */
.gw-pt-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line2);
}
.gw-pt-row:last-child { border-bottom: none; }
.gw-pt-up   { color: var(--mint-d); font-weight: 700; }
.gw-pt-down { color: var(--peach-dk); font-weight: 700; }

/* ════════════════════════
   통계
════════════════════════ */
.gw-stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--bg3);
}
.gw-stat-row:last-child { border-bottom: none; }
.gw-stat-val { font-weight: 700; color: var(--peach-dk); }

/* ════════════════════════
   로그인 박스 (사이드)
════════════════════════ */
.gw-login-box {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  margin-bottom: 14px;
}
.gw-login-box h3 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.gw-login-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text3);
  margin-top: 7px;
}
.gw-login-links a { color: var(--text3); cursor: pointer; }
.gw-login-links a:hover { color: var(--peach-dk); }

/* ════════════════════════
   업로드 CTA 버튼
════════════════════════ */
.gw-upload-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: var(--peach-dk);
  color: white;
  border: none;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 14px;
  transition: opacity .12s;
  text-decoration: none;
}
.gw-upload-cta:hover { opacity: .88; color: white; }

/* ════════════════════════
   페이징
════════════════════════ */
.gw-paging {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.gw-paging a, .gw-paging strong {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  cursor: pointer;
  transition: all .12s;
  text-decoration: none;
}
.gw-paging a:hover, .gw-paging strong {
  background: var(--peach-dk);
  border-color: var(--peach-dk);
  color: white;
}

/* ════════════════════════
   마이페이지 상단
════════════════════════ */
.gw-my-top {
  background: var(--bg2);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.gw-my-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--sky);
  border: 3px solid var(--sky-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}
.gw-my-name { font-size: 19px; font-weight: 700; margin-bottom: 3px; }
.gw-my-grade { font-size: 13px; color: var(--sky-dk); font-weight: 700; }
.gw-my-pt { font-size: 14px; color: var(--peach-dk); font-weight: 700; margin-top: 3px; }
.gw-my-menu-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 18px; }
.gw-my-menu-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color .12s, box-shadow .12s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.gw-my-menu-card:hover { border-color: var(--peach); box-shadow: var(--shadow); }
.gw-my-menu-ico { font-size: 26px; margin-bottom: 6px; }
.gw-my-menu-lbl { font-size: 12px; font-weight: 700; color: var(--text2); }

/* ════════════════════════
   이용안내 스텝
════════════════════════ */
.gw-guide-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 22px; }
.gw-guide-step {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 18px 14px;
  text-align: center;
}
.gw-guide-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--peach-dk);
  color: white;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.gw-guide-ico { font-size: 26px; margin-bottom: 7px; }
.gw-guide-step h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.gw-guide-step p { font-size: 12px; color: var(--text2); line-height: 1.55; }

/* ════════════════════════
   FAQ
════════════════════════ */
.gw-faq-item {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
}
.gw-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: background .12s;
  user-select: none;
}
.gw-faq-q:hover { background: var(--bg2); }
.gw-faq-qmark {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--peach);
  color: white;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-right: 8px;
}
.gw-faq-a {
  display: none;
  padding: 13px 18px 14px 50px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.75;
  background: var(--bg2);
  border-top: 1.5px solid var(--line);
}
.gw-faq-a.open { display: block; }

/* ════════════════════════
   파일 업로드 영역
════════════════════════ */
.gw-file-area {
  border: 2px dashed var(--peach);
  border-radius: 11px;
  padding: 18px;
  text-align: center;
  background: var(--bg2);
  cursor: pointer;
  transition: background .12s;
  margin-bottom: 8px;
}
.gw-file-area:hover { background: var(--peach-lt); }
.gw-file-area-ico { font-size: 28px; margin-bottom: 5px; }
.gw-file-area p { font-size: 13px; color: var(--text2); }
.gw-file-area .note { font-size: 11px; color: var(--text3); margin-top: 3px; }
.gw-file-area.disabled {
  opacity: .45;
  cursor: not-allowed;
  border-color: var(--line);
  background: var(--bg3);
}

/* ════════════════════════
   상세 페이지 파일 카드
════════════════════════ */
.gw-file-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  margin-bottom: 8px;
  transition: border-color .12s;
}
.gw-file-card:hover { border-color: var(--peach); }
.gw-file-left { display: flex; align-items: center; gap: 12px; }
.gw-file-ico { font-size: 28px; }
.gw-file-nm { font-size: 14px; font-weight: 700; }
.gw-file-sz { font-size: 11px; color: var(--text3); margin-top: 2px; }
.gw-file-right { display: flex; align-items: center; gap: 10px; }
.gw-file-pt { font-size: 14px; font-weight: 700; color: var(--peach-dk); text-align: right; }
.gw-file-dlcnt { font-size: 11px; color: var(--text3); }
.gw-dl-btn {
  padding: 8px 16px;
  background: var(--sky-dk);
  color: white;
  border: none;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .12s;
}
.gw-dl-btn:hover { opacity: .85; }

/* ════════════════════════
   이용약관 박스
════════════════════════ */
.gw-terms-box {
  background: var(--bg2);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text2);
  max-height: 220px;
  overflow-y: auto;
}
.gw-terms-box strong { color: var(--peach-dk); }
.gw-terms-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}

/* ════════════════════════
   업로드 스텝 카드
════════════════════════ */
.gw-step-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  margin-bottom: 14px;
}
.gw-step-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gw-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--peach-dk);
  color: white;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ════════════════════════
   포인트 내역 페이지
════════════════════════ */
.gw-pt-big {
  background: linear-gradient(135deg, var(--peach-dk) 0%, var(--sky-dk) 100%);
  border-radius: var(--r);
  padding: 24px;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}
.gw-pt-big-num {
  font-family: 'Gaegu', cursive;
  font-size: 46px;
  font-weight: 700;
  margin: 8px 0;
}
.gw-pt-mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.gw-pt-mini {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.gw-pt-mini-val { font-size: 20px; font-weight: 700; color: var(--peach-dk); }
.gw-pt-mini-lbl { font-size: 12px; color: var(--text2); margin-top: 3px; }
.gw-pt-hist-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  margin-bottom: 6px;
  font-size: 13px;
}
.gw-pt-plus  { color: var(--mint-d); font-weight: 700; }
.gw-pt-minus { color: var(--peach-dk); font-weight: 700; }

/* ════════════════════════
   댓글
════════════════════════ */
.gw-cm-box {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 13px 16px;
  margin-bottom: 8px;
}
.gw-cm-user { font-size: 12px; font-weight: 700; color: var(--sky-dk); }
.gw-cm-date { font-size: 11px; color: var(--text3); margin-left: 6px; }
.gw-cm-txt { font-size: 13px; margin-top: 4px; line-height: 1.6; }

/* ════════════════════════
   뱃지
════════════════════════ */
.gw-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.gb-pdf   { background: #FFE8EC; color: #C0185B; }
.gb-hwp   { background: #E3EEFF; color: #1553B5; }
.gb-ans   { background: #EEF0FF; color: #4040C0; }
.gb-exp   { background: #E8F8E8; color: #207020; }
.gb-new   { background: var(--peach); color: white; }
.gb-ok    { background: #E8F8E8; color: #207020; }
.gb-wait  { background: #FFF0E0; color: #C05A28; }
.gb-rej   { background: #FEEAEA; color: #B01818; }

/* ════════════════════════
   푸터
════════════════════════ */
#gw-footer {
  background: #2C1E14;
  color: #A07060;
  padding: 34px 20px 22px;
}
.gw-ft-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.gw-ft-logo {
  font-family: 'Gaegu', cursive;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.gw-ft-logo .lt { color: var(--sky); }
.gw-ft-logo .rt { color: var(--peach-lt); }
.gw-ft-desc { font-size: 12px; color: #6A4030; margin-bottom: 14px; line-height: 1.7; }
.gw-ft-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 13px;
}
.gw-ft-links a { color: #A07060; transition: color .12s; }
.gw-ft-links a:hover { color: var(--peach-lt); }
.gw-ft-copy { font-size: 11px; color: #6A4030; }

/* ════════════════════════
   반응형
════════════════════════ */
@media (max-width: 900px) {
  .gw-grid { grid-template-columns: 1fr; }
  .gw-my-menu-grid { grid-template-columns: repeat(2,1fr); }
  .gw-guide-grid { grid-template-columns: repeat(2,1fr); }
  .gw-pt-mini-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 700px) {
  .gw-nav { display: none; }
  .gw-hamburger { display: flex; }
  .gw-mobile-nav { display: block; }
  .gw-hbtn { display: none; }
  .gw-hero-title { font-size: 38px; }
  .gw-srch-r1 { grid-template-columns: 1fr 1fr; }
  .gw-srch-r2 { grid-template-columns: 1fr 1fr; }
  .gw-grid2, .gw-grid3, .gw-grid4 { grid-template-columns: 1fr; }
}

/* ── 로그인 페이지 레이아웃 수정 ── */
#gw-wrap #mb_login.mbskin {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}
#gw-wrap #mb_login.mbskin .mbskin_box {
  border: 1px solid #F0DDD0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}
#mb_login h1 {
  display: none;
}
#mb_login .mb_log_cate {
  background: #FFF8F4;
  border-bottom: 1px solid #F0DDD0;
}
#mb_login .mb_log_cate h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text1);
}
#mb_login .mb_log_cate .join {
  background: #FFF0E8;
  color: var(--peach-dk);
  font-weight: 600;
}
#login_fs {
  padding: 30px 35px;
}
#mb_login #login_fs .frm_input {
  border: 1px solid #E8D8CC;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  background: #FAFAFA;
}
#mb_login #login_fs .frm_input:focus {
  outline: none;
  border-color: var(--peach-dk);
  background: #fff;
}
#mb_login .btn_submit {
  background: var(--peach-dk, #E8895A);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
}
#mb_login .btn_submit:hover {
  opacity: 0.88;
}
