:root {
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "SUIT", sans-serif; background: var(--white); color: var(--gray-600); }
a { color: inherit; text-decoration: none; }
button { font-family: "SUIT", sans-serif; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  height: 90px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  padding: 0 40px;
}

.logo-wrap { margin-left: 30px; }

.logo-wrap img {
  height: 58px;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 48px;
  margin-right: 48px;
}

.site-nav a {
  color: #1a1a1a;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.3px;
  transition: color 0.2s;
  position: relative;
  padding: 8px 0;
}

.site-nav a:hover {
  color: #555;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1a1a1a;
  transition: width 0.25s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.kakao-btn {
  padding: 11px 26px;
  border: 1.5px solid #1a1a1a;
  border-radius: 6px;
  color: #1a1a1a;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.2px;
  transition: all 0.25s;
}

.kakao-btn:hover {
  background: #1a1a1a;
  color: #fff;
}
.hero {
  background: linear-gradient(180deg, #EAECF0 0%, #DFE2E8 100%);
  padding: 80px 0 25px;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 브랜드 - 양쪽 라인 */
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #7C8494;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-brand::before,
.hero-brand::after {
  content: "";
  width: 48px;
  height: 1px;
  background: #A0A7B5;
}

/* 캐치프레이즈 - 중간 크기 */
.hero-catchphrase {
  color: #374151;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

/* 메인 타이틀 - 제일 크게 */
.hero-title {
  color: #0B0F1A;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

/* 설명 */
.hero-desc {
  color: #5E6577;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.2px;
}

.hero-desc + .hero-desc {
  margin-top: 2px;
}

/* 검색창 */
.hero-search {
  max-width: 540px;
  margin: 44px auto 0;
  background: #ffffff;
  border-radius: 0;
  border: 2px solid #C9A96E;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
  transition: all 0.3s;
}

.hero-search:focus-within {
  box-shadow: 0 6px 32px rgba(0,0,0,0.09);
  border-color: #B0B6C1;
}

.hero-search input {
  width: 100%;
  padding: 18px 28px;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: "SUIT", sans-serif;
  color: #111827;
  background: transparent;
  text-align: center;
}

.hero-search input::placeholder {
  color: #9CA3AF;
}

/* 카운트 */
.hero-count {
  margin-top: 24px;
  color: #7C8494;
  font-size: 14px;
  letter-spacing: -0.2px;
}

.hero-count strong {
  color: #0B0F1A;
  font-size: 20px;
  font-weight: 800;
  margin: 0 4px;
}
.cases-section {
  background: linear-gradient(180deg, #DFE2E8 0%, #D6DAE2 100%);
  padding: 25px 0 60px;
}

.cases-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.cases-header {
  text-align: center;
  margin-bottom: 48px;
}

.cases-label {
  color: #7C8494;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cases-title {
  color: #0B0F1A;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -1px;
}

/* 카드 그리드 */
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* 개별 카드 */
.case-card {
  background: #ffffff;
  border-radius: 0;
  padding: 40px 32px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* 상단 골드 라인 */
.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C9A96E, #E2C992);
}

/* NEW 뱃지 */
.case-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #0B0F1A;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 0;
  letter-spacing: 0.5px;
}

/* 업체명 */
.case-name {
  color: #0B0F1A;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  margin-top: 4px;
}

/* 카테고리 */
.case-category {
  color: #4B5563;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

/* 설명 */
.case-note {
  color: #5E6577;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 경고 문구 */
.case-alert {
  color: #6B7280;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F0F0F0;
}

/* 상태 */
.case-status {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.case-status-badge {
  color: #7A5F1F;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.case-phone {
  color: #7C8494;
  font-size: 13px;
}

/* 카드 버튼 래퍼 */
.case-buttons {
  display: flex;
  gap: 10px;
}

/* 카드 버튼 통일 */
.case-btn {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  padding: 10px 4px;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  border: 1.5px solid #CBD5E1;
  border-radius: 0;
  transition: all 0.25s;
  background: transparent;
}

.case-btn:hover {
  color: #ffffff;
  background: #475569;
  border-color: #475569;
}

.case-btn-consult {
  background: #8B6914;
  color: #ffffff;
  border-color: #8B6914;
}

.case-btn-consult:hover {
  background: #7A5F1F;
  border-color: #7A5F1F;
  color: #ffffff;
}

/* 페이지네이션 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.page-btn {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #7C8494;
  background: rgba(255,255,255,0.5);
  transition: all 0.2s;
}

.page-btn:hover {
  background: #ffffff;
  color: #0B0F1A;
}

.page-btn.active {
  background: #0B0F1A;
  color: #ffffff;
}

.page-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.page-nav {
  font-size: 13px;
  padding: 10px 14px;
  color: #7C8494;
}

@media (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 32px;
  }
  .page-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  .page-nav {
    padding: 8px 10px;
    font-size: 12px;
  }
}
.consult-section {
  background: #ffffff;
  padding: 60px 0;
  text-align: center;
  min-height: 300px;
  contain: layout;
}

.consult-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.consult-title {
  color: #0B0F1A;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.consult-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.consult-btn {
  padding: 22px 0;
  width: 380px;
  text-align: center;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  transition: all 0.25s;
}

.consult-btn-kakao {
  background: #1a1f36;
  color: #ffffff;
  border: 1.5px solid #1a1f36;
}

.consult-btn-kakao:hover {
  background: #C9A96E;
  border-color: #C9A96E;
  color: #ffffff;
}

.consult-btn-phone {
  background: transparent;
  color: #475569;
  border: 1.5px solid #475569;
}

.consult-btn-phone:hover {
  background: #475569;
  color: #ffffff;
}
.site-footer {
  background: #1a1f36;
  border-top: none;
  padding: 50px 0;
  text-align: center;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  margin-bottom: 28px;
}

.footer-logo img {
  height: 64px;
  margin: 0 auto;
}

.footer-info {
  margin-bottom: 24px;
}

.footer-info p {
  color: #E5E7EB;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: -0.2px;
}

.footer-divider {
  margin: 0 16px;
  color: #D1D5DB;
}

.footer-bottom-line {
  text-align: center;
}

.footer-bottom-line .footer-copy {
  display: block;
  margin-bottom: 8px;
}

.footer-copy {
  color: #D1D5DB;
  font-size: 13px;
  letter-spacing: -0.1px;
}

.footer-privacy {
  color: #D1D5DB;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

.footer-privacy:hover {
  color: #C9A96E;
}

.toast-notify {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  z-index: 9999;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.8s ease;
  max-width: 360px;
}

.toast-notify.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-notify-gold {
  width: 4px;
  background: #C9A96E;
  flex-shrink: 0;
}

.toast-notify-content {
  padding: 18px 20px;
}

.toast-notify-msg {
  font-size: 14px;
  font-weight: 500;
  color: #0B0F1A;
  line-height: 1.5;
  margin: 0;
}

.toast-notify-time {
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 4px;
  display: block;
}

.toast-notify-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 16px;
  color: #9CA3AF;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.about-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-hero-overlay {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: rgba(11, 15, 26, 0.8);
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.about-hero h1 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 48px;
}

.about-hero-text {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.about-hero-text strong {
  font-weight: 700;
  color: #C9A96E;
}

/* 대표 변호사 인사말 */
.about-greeting {
  background: #ffffff;
  padding: 100px 0;
}

.about-greeting-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-greeting-text h2 {
  color: #0B0F1A;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 36px;
  color: #7C8494;
}

.about-greeting-text p {
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

.about-greeting-text strong {
  color: #0B0F1A;
  font-weight: 700;
}

.about-greeting-highlight {
  color: #7A5F1F !important;
  font-size: 20px !important;
  font-weight: 700;
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}

.about-greeting-sign {
  margin-top: 36px !important;
  color: #0B0F1A !important;
  font-size: 16px !important;
}

.about-greeting-photo img {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .about-greeting { padding: 20px 0 60px; }
  .about-greeting-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 12px;
  }
  .about-greeting-text { order: 2; }
  .about-greeting-photo { order: 1; }
  .about-greeting-text p { font-size: 15px; }
  .about-greeting-highlight { font-size: 17px !important; }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 80vh;
  }

  .about-hero-overlay {
    min-height: 80vh;
  }

  .about-hero-inner {
    padding: 60px 24px;
  }

  .about-hero h1 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 36px;
  }

  .about-hero-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.9;
  }
}
.location-page-main {
  background: #F3F4F6;
}

.location-hero {
  background: #F3F4F6;
  padding: 40px 0 0;
}

.location-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.location-hero-img {
  border-radius: 8px;
  overflow: hidden;
}

.location-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-hero-info {
  background: #F3F4F6;
}

.location-hero-text {
  border-radius: 8px;
  overflow: hidden;
}

.location-hero-text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-hero-map {
  background: #F3F4F6;
  min-height: 374px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.location-content {
  background: #F3F4F6;
  padding: 40px 0 80px;
}

.location-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.location-map {
  position: relative;
  min-height: 380px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  border-radius: 16px;
}

.map-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0,0,0,0.05);
  cursor: pointer;
}

.map-overlay span {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
}

.location-map .root_daum_roughmap_landing .wrap_map_details {
  display: none !important;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.location-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #D1D5DB;
  font-size: 16px;
  font-weight: 500;
  color: #4B5563;
}

.location-info-item:last-child {
  border-bottom: 1px solid #D1D5DB;
}

.location-info-item strong {
  font-weight: 700;
  font-size: 17px;
  color: #0B0F1A;
  margin-right: 8px;
}

.location-info-icon {
  flex-shrink: 0;
  font-size: 22px;
}

.location-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #2D3A6D;
  border-radius: 50%;
}

.location-hours-card {
  background: #FFFDF7;
  padding: 16px 24px;
  color: #3B2415;
  border-radius: 16px;
  text-align: center;
  border: none;
  border: 4px solid #C9A96E;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.location-hours-card::before,
.location-hours-card::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.15), rgba(201,169,110,0.3), rgba(201,169,110,0.15), transparent);
  pointer-events: none;
}

.location-hours-card::before {
  left: -100%;
}

.location-hours-card::after {
  right: -100%;
}

.location-hours-card:hover::before {
  animation: shimmerLeft 1.2s ease forwards;
}

.location-hours-card:hover::after {
  animation: shimmerRight 1.2s ease forwards;
}

@keyframes shimmerLeft {
  0% { left: -100%; }
  50% { left: 20%; }
  100% { left: 20%; opacity: 0; }
}

@keyframes shimmerRight {
  0% { right: -100%; }
  50% { right: 20%; }
  100% { right: 20%; opacity: 0; }
}

.location-hours p {
  font-size: 16px;
  line-height: 1.8;
  color: #3B2415;
  font-weight: 500;
}

.location-hours strong {
  font-weight: 500;
  font-size: 16px;
  color: #3B2415;
}

.location-hours-note {
  margin-top: 16px;
  padding: 0;
  background: transparent;
  border: none;
  display: block;
  font-size: 16px;
  color: #3B2415;
  font-weight: 500;
}

.location-kakao-btn {
  display: block;
  margin-top: 20px;
  padding: 14px;
  background: #1a1f36;
  border: 1.5px solid #C9A96E;
  border-radius: 8px;
  color: #C9A96E;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
}

.location-hours-card:hover .location-kakao-btn {
  animation: btnFlash 0.8s 0.5s ease both;
}

@keyframes btnFlash {
  0% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
  40% { box-shadow: 0 0 24px 8px rgba(201,169,110,0.6); background: #C9A96E; color: #ffffff; }
  100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); background: #1a1f36; color: #C9A96E; }
}

.location-kakao-btn:hover {
  background: #C9A96E;
  color: #ffffff;
}

@media (max-width: 768px) {
  .map-overlay { display: block; }
  .location-hero { padding: 20px 0 0; }
  .location-hero-inner {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 16px;
  }
  .location-hero-right {
    gap: 30px;
  }
  .location-hero-map {
    min-height: 250px;
  }
  .location-content {
    padding: 30px 0 40px;
  }
  .location-content-inner {
    padding: 0 16px;
  }
  .location-hours p { font-size: 16px; }
}
/* 상담 방법 */
.consult-methods {
  background: #1a1f36;
  padding: 80px 0;
}

.consult-methods-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consult-method-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 28px 28px;
  min-height: 100px;
  border: 2px solid #C9A96E;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.consult-method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(201,169,110,0.15), rgba(201,169,110,0.3), rgba(201,169,110,0.15), transparent);
  transition: none;
}

.consult-method-card:hover::before {
  left: 100%;
  transition: left 0.5s ease;
}

.consult-method-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.2);
  border-color: #E2C992;
}

.consult-method-icon {
  font-size: 28px;
  margin-right: 20px;
  flex-shrink: 0;
}

.consult-method-text {
  flex: 1;
  text-align: center;
  padding-right: 40px;
}

.consult-method-text h3 {
  color: #0B0F1A;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.consult-method-text p {
  color: #6B7280;
  font-size: 14px;
  line-height: 1.5;
}

.consult-method-arrow {
  color: #C9A96E;
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
}

/* 상담 진행절차 */
.consult-steps {
  background: #ffffff;
  padding: 80px 0;
}

.consult-steps-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.consult-steps-inner h2 {
  color: #0B0F1A;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -1px;
}

.consult-step-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.consult-step {
  display: flex;
  align-items: center;
  width: 100%;
  background: #F9FAFB;
  padding: 28px 28px;
  border: 1px solid #E5E7EB;
}

.consult-step-icon {
  font-size: 32px;
  margin-right: 20px;
  flex-shrink: 0;
}

.consult-step-content {
  flex: 1;
}

.consult-step-label {
  color: #C9A96E;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.consult-step-content h3 {
  color: #0B0F1A;
  font-size: 20px;
  font-weight: 700;
  margin: 6px 0;
}

.consult-step-content p {
  color: #6B7280;
  font-size: 14px;
}

.consult-step-arrow {
  color: #C9A96E;
  font-size: 16px;
  padding: 8px 0;
}

/* 모바일 */
@media (max-width: 768px) {
  .consult-methods { padding: 40px 0; }
  .consult-method-card { padding: 20px 16px; }
  .consult-method-text h3 { font-size: 16px; }
  .consult-method-text p { font-size: 13px; }

  .consult-steps { padding: 40px 0; }
  .consult-steps-inner h2 { font-size: 24px; margin-bottom: 32px; }
  .consult-step { padding: 20px 16px; }
  .consult-step-content h3 { font-size: 17px; }
}
/* 사건 상세 - 히어로 */
.case-hero {
  background: #1a1f36;
  padding: 60px 0;
  text-align: center;
}

.case-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.case-hero-badge {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  color: #C9A96E;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.case-hero h1 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 16px;
}

.case-hero-count {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
}

.case-hero-count strong {
  color: #C9A96E;
  font-size: 20px;
  font-weight: 800;
}

.case-hero-warning {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  margin-top: 8px;
}

/* 사건 상세 - 본문 */
.case-body {
  padding: 20px 0;
}

.case-body-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 왼쪽: 사건 내용 */
.case-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #C9A96E;
  text-align: center;
}

.case-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 12px;
}

.case-list,
.case-steps {
  padding-left: 20px;
}

.case-list li,
.case-steps li {
  font-size: 15px;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 10px;
}

.case-list li::marker {
  color: #C9A96E;
}

.case-steps li::marker {
  color: #C9A96E;
  font-weight: 700;
}

.case-steps li strong {
  color: #1a1f36;
}

/* 소송 접수 절차 */
.case-process {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.case-process-step {
  background: #FFFDF7;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.case-process-step:hover {
  border-color: #C9A96E;
  box-shadow: 0 4px 16px rgba(201,169,110,0.15);
}

.case-process-num {
  width: 36px;
  height: 36px;
  background: #C9A96E;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin: 0 auto 14px;
}

.case-process-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 6px;
}

.case-process-info p {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}

/* 참여자격 */
.case-qualify-desc {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.8;
  margin-bottom: 16px;
}

.case-qualify-desc strong {
  color: #C9A96E;
}

.case-qualify-list {
  padding-left: 20px;
}

.case-qualify-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 8px;
}

.case-qualify-list li::marker {
  color: #C9A96E;
  font-weight: 700;
}

/* 자주 묻는 질문 */
.case-faq-desc {
  font-size: 15px;
  color: #6B7280;
  margin-bottom: 20px;
}

.case-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

.case-faq-item:hover {
  border-color: #C9A96E;
}

.case-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #ffffff;
  font-size: 15px;
  font-weight: 600;
  color: #1a1f36;
  cursor: pointer;
  font-family: "SUIT", sans-serif;
  border: none;
  text-align: left;
}

.case-faq-q span:first-child::before {
  content: "Q";
  color: #C9A96E;
  font-size: 17px;
  font-weight: 800;
  margin-right: 10px;
}

.case-faq-arrow {
  font-size: 12px;
  color: #9CA3AF;
  transition: transform 0.3s;
}

.case-faq-item.open .case-faq-arrow {
  transform: rotate(180deg);
}

.case-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.case-faq-item.open .case-faq-a {
  max-height: 200px;
}

.case-faq-a p {
  padding: 0 20px 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #4B5563;
  margin: 0;
}

/* 오른쪽: 상담 CTA */
.case-sidebar {
  position: sticky;
  top: 120px;
}

.case-cta-card {
  background: #FFFDF7;
  border: 1px solid #C9A96E;
  border-radius: 12px;
  padding: 24px 24px;
  text-align: center;
}

.case-cta-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 12px;
}

.case-cta-desc {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 16px;
}

.case-cta-count {
  font-size: 14px;
  color: #1a1f36;
  margin-bottom: 8px;
}

.case-cta-count strong {
  color: #C9A96E;
  font-size: 18px;
}

.case-cta-note {
  font-size: 13px;
  color: #C9A96E;
  font-weight: 600;
  margin-bottom: 24px;
}

.case-cta-btn {
  display: block;
  padding: 14px 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.case-cta-btn + .case-cta-btn {
  margin-top: 10px;
}

.case-cta-kakao {
  background: #1a1f36;
  color: #C9A96E;
  border: 1px solid #C9A96E;
}

.case-cta-kakao:hover {
  background: #C9A96E;
  color: #ffffff;
}

.case-cta-phone {
  background: #ffffff;
  color: #1a1f36;
  border: 1px solid #D1D5DB;
}

.case-cta-phone:hover {
  border-color: #1a1f36;
}

/* 다른 사건 */
.case-related {
  background: #F9FAFB;
  padding: 20px 0;
}

.case-related-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.case-related h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 24px;
  text-align: center;
}

.case-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.case-related-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.case-related-card:hover {
  border-color: #C9A96E;
  box-shadow: 0 4px 16px rgba(201,169,110,0.15);
}

.case-related-badge {
  display: inline-block;
  font-size: 12px;
  color: #9CA3AF;
  margin-bottom: 8px;
}

.case-related-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1f36;
}

/* 모바일 */
@media (max-width: 768px) {
  .case-hero { padding: 40px 0; }
  .case-hero h1 { font-size: 24px; }
  .case-hero-inner { padding: 0 20px; }

  .case-body-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 32px;
  }

  .case-sidebar {
    position: static;
  }

  .case-body { padding: 20px 0; }
  .case-related { padding: 20px 0; }
  .case-related-inner { padding: 0 20px; }
  .case-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.privacy-hero {
  background: #1a1f36;
  padding: 80px 0 48px;
  text-align: center;
}

.privacy-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-hero h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.privacy-hero p {
  color: #9CA3AF;
  font-size: 15px;
}

.privacy-body {
  padding: 60px 0 80px;
  background: #fff;
}

.privacy-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.privacy-intro {
  color: #374151;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E5E7EB;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  color: #0B0F1A;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #C9A96E;
}

.privacy-section h3 {
  color: #1E293B;
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 10px;
}

.privacy-section p {
  color: #374151;
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 12px;
}

.privacy-section ul,
.privacy-section ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.privacy-section li {
  color: #374151;
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 8px;
}

.privacy-section li strong {
  color: #0B0F1A;
}

.privacy-contact {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-left: 3px solid #C9A96E;
  padding: 20px 24px;
  margin: 16px 0;
}

.privacy-contact p {
  margin-bottom: 4px;
}

.privacy-date {
  background: #F9FAFB;
  padding: 16px 24px;
  margin-top: 16px;
}

.privacy-date p {
  margin-bottom: 4px;
  color: #6B7280;
  font-size: 14px;
}

@media (max-width: 768px) {
  .privacy-hero { padding: 60px 0 36px; }
  .privacy-hero h1 { font-size: 28px; }
  .privacy-body { padding: 40px 0 60px; }
  .privacy-section h2 { font-size: 18px; }
}
@media (max-width: 768px) {
  .site-header {
    height: 56px;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 16px;
  }

  .logo-wrap { display: none; }
  .site-nav { display: none; }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }

  .hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
  }

  .mobile-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 25px;
  }

  .mobile-logo img { height: 30px; }

  .kakao-btn {
    padding: 4px 10px;
    font-size: 13px;
    border-color: #1a1a1a;
    color: #1a1a1a;
    background: transparent;
  }

  .kakao-btn:hover {
    background: #1a1a1a;
    color: #fff;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 99;
  }

  .mobile-menu.active { display: block; }

  .mobile-menu a {
    display: block;
    padding: 16px 24px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-menu a:hover { background: #f9fafb; }

  /* 히어로 모바일 */
  .hero { padding: 60px 0 20px; }
  .hero-brand { font-size: 11px; margin-bottom: 24px; }
  .hero-brand::before, .hero-brand::after { width: 24px; }
  .hero-catchphrase { font-size: 16px; margin-bottom: 10px; }
  .hero-title { font-size: 28px; letter-spacing: -1px; margin-bottom: 20px; }
  .hero-desc { font-size: 14px; }
  .hero-search { margin: 28px auto 0; }
  .hero-search input { padding: 14px 18px; font-size: 13px; }
  .hero-count { font-size: 12px; }
  .hero-count strong { font-size: 16px; }

  /* 카드 모바일 */
  .cases-section { padding: 20px 0 30px; }
  .case-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .case-btn-consult { display: block; }
  .case-buttons { flex-direction: row; gap: 2px; }
  .case-btn { font-size: 10px; padding: 10px 14px; white-space: nowrap; }
  .case-card { padding: 32px 2px 14px; text-align: center; }
  .case-name { font-size: 15px; margin-bottom: 8px; }
  .case-category { font-size: 11px; margin-bottom: 10px; }
  .case-note { font-size: 12px; margin-bottom: 12px; }
  .case-alert { font-size: 10px; margin-bottom: 12px; padding-bottom: 12px; }
  .case-status { margin-bottom: 16px; flex-direction: column; gap: 4px; }
  .case-status-badge { font-size: 15px; }
  .case-phone { font-size: 15px; font-weight: 700; color: #0B0F1A; }
  .case-btn { padding: 8px 4px; font-size: 10px; }
  .case-badge { font-size: 9px; padding: 3px 7px; top: 12px; right: 12px; }
  .cases-title { font-size: 22px; }
  .cases-label { font-size: 14px; }

  /* 상담 모바일 */
  .consult-section { padding: 30px 0; min-height: 240px; }
  .consult-title { font-size: 22px; margin-bottom: 32px; }
  .consult-buttons { flex-direction: column; align-items: center; }
  .consult-btn { width: 100%; max-width: 400px; padding: 18px 0; font-size: 16px; }

  /* 푸터 모바일 */
  .footer-logo img { height: 48px; }
  .footer-info p { font-size: 13px; }
  .footer-bottom-line { flex-direction: column; gap: 8px; }

  /* 토스트 모바일 */
  .toast-notify {
    bottom: 80px;
    right: 12px;
    left: 12px;
    max-width: none;
  }

  /* 푸터 여백 (하단 고정 바 공간 확보) */
  .site-footer { padding-bottom: 80px; }

  /* 하단 고정 바 */
  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    height: 60px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  }

  .mobile-action-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #374151;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-action-item:active {
    background: rgba(255,255,255,0.1);
  }

  .mobile-action-svg {
    width: 24px;
    height: 24px;
  }

  .mobile-action-talk {
    display: inline-block;
    background: #FEE500;
    color: #191919;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 6px;
  }
}

@media (min-width: 769px) {
  .hamburger { display: none; }
  .mobile-logo { display: none; }
  .mobile-menu { display: none; }
  .site-footer { padding-bottom: 80px; }
  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    height: 56px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
  }
  .mobile-action-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s;
  }
  .mobile-action-item:hover {
    background: rgba(255,255,255,0.1);
  }
  .mobile-action-svg {
    width: 22px;
    height: 22px;
  }
}


.case-table {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.case-table-head {
  display: grid;
  grid-template-columns: 1fr 180px 100px 110px;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
}
.case-row {
  display: grid;
  grid-template-columns: 1fr 180px 100px 110px;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}
.case-row:hover { background: #fafafa; }
.case-row:last-child { border-bottom: none; }
.case-row-name {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}
.case-badge {
  display: inline-block;
  position: static;
  padding: 4px 10px;
  background: #c4b389;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  top: auto;
  right: auto;
}
.case-row-category { font-size: 14px; color: #6B7280; }
.case-status-badge {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid #4F6BD6;
  color: #4F6BD6;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}
.case-row-date { font-size: 13px; color: #9CA3AF; }

@media (max-width: 768px) {
  .case-table-head { display: none; }
  .case-row {
    grid-template-columns: 1fr auto;
    grid-template-areas: "name status" "label date";
    gap: 6px 12px;
    padding: 14px 16px;
  }
  .case-row-name { grid-area: name; font-size: 14px; gap: 8px; }
  .case-row-status { grid-area: status; justify-self: end; }
  .case-row-category { grid-area: category; font-size: 12px; }
  .case-row-label { grid-area: label; font-size: 12px; color: #6B7280; }
  .case-row-date { grid-area: date; font-size: 12px; justify-self: end; }
  .case-badge { padding: 3px 7px; font-size: 10px; }
  .case-status-badge { padding: 3px 9px; font-size: 11px; }
}

.case-row-label { font-size: 14px; color: #6B7280; }


.guides-section {
  padding: 30px 0 60px;
  background: linear-gradient(180deg, #DFE2E8 0%, #D6DAE2 100%);
}
.guides-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.guide-card {
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.guide-card-body { padding: 24px 22px; }
.guide-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.4;
}
.guide-card-excerpt {
  font-size: 13.5px;
  color: #6B7280;
  line-height: 1.55;
  margin: 0 0 18px;
}
.guide-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}
.guide-card-date { font-size: 12px; color: #9CA3AF; }
.guide-card-arrow { color: #c4b389; font-weight: 700; }

@media (max-width: 1024px) {
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .guide-grid { grid-template-columns: 1fr; gap: 14px; }
  .guide-card-body { padding: 20px 18px; }
  .guide-card-title { font-size: 16px; }
}


.site-nav a.active {
  color: #c4b389 !important;
  font-weight: 700;
}
.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: #c4b389;
}

/* ─── 피해구제 가이드 상세 페이지 (single-guide.php) ─── */
.guide-hero {
  background: linear-gradient(180deg, #EAECF0 0%, #DFE2E8 100%);
  padding: 60px 0 40px;
  text-align: center;
}
.guide-hero-inner { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.guide-hero-label {
  display: inline-block; padding: 4px 12px;
  background: rgba(196, 179, 137, 0.2); color: #c4b389;
  font-size: 13px; font-weight: 600; border-radius: 4px; margin-bottom: 16px;
}
.guide-hero-label a { color: inherit; text-decoration: none; }
.guide-hero-title { font-size: 32px; font-weight: 800; line-height: 1.4; color: #1a1a1a; margin: 0 0 16px; }
.guide-hero-meta { font-size: 14px; color: #6B7280; margin: 0; }

.guide-body { padding: 60px 0; }
.guide-body-inner { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.guide-content { font-size: 16px; line-height: 1.8; color: #1a1a1a; }
.guide-content h2 {
  font-size: 24px; font-weight: 700; color: #1a1f36;
  margin: 56px 0 24px; padding-bottom: 14px;
  border-bottom: 2px solid #C9A96E;
  text-align: center; letter-spacing: -0.5px;
}
.guide-content h3 { font-size: 18px; font-weight: 700; margin: 32px 0 12px; }
.guide-content p { margin: 0 0 16px; }
.guide-content a { color: #c4b389; text-decoration: underline; }
.guide-content ul, .guide-content ol { margin: 16px 0; padding-left: 24px; }
.guide-content li { margin-bottom: 8px; }
.guide-content strong { font-weight: 700; }
.guide-content em { color: #c4b389; font-style: normal; font-weight: 600; }
.guide-content blockquote {
  margin: 24px 0; padding: 16px 20px;
  border-left: 4px solid #c4b389; background: #fafafa; color: #4B5563;
}

.guide-cta {
  margin-top: 60px; padding: 40px;
  background: #fafafa; border-radius: 8px; text-align: center;
}
.guide-cta-text { font-size: 18px; font-weight: 600; margin: 0 0 24px; }
.guide-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.guide-cta-btn {
  display: inline-block; padding: 14px 32px;
  border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 15px;
  transition: all 0.2s;
}
.guide-cta-kakao { background: #c4b389; color: #1a1f36; }
.guide-cta-kakao:hover { background: #1a1f36; color: #c4b389; }
.guide-cta-phone { background: #ffffff; color: #1a1a1a; border: 1.5px solid #1a1a1a; }
.guide-cta-phone:hover { background: #1a1a1a; color: #ffffff; }

.guide-related { background: #fafafa; padding: 60px 0; border-top: 1px solid #f0f0f0; }
.guide-related-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.guide-related h2 { font-size: 24px; font-weight: 700; text-align: center; margin: 0 0 40px; }
.guide-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.guide-related-card {
  background: #ffffff; padding: 20px; border-radius: 8px;
  text-decoration: none; color: inherit; transition: transform 0.15s, box-shadow 0.15s;
}
.guide-related-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.guide-related-badge {
  display: inline-block; padding: 3px 8px;
  background: rgba(196,179,137,0.15); color: #c4b389;
  font-size: 11px; font-weight: 600; border-radius: 3px; margin-bottom: 8px;
}
.guide-related-name { font-size: 14px; font-weight: 600; margin: 0; line-height: 1.5; }

@media (max-width: 768px) {
  .guide-hero { padding: 30px 0 20px; }
  .guide-hero-title { font-size: 22px; }
  .guide-body { padding: 30px 0; }
  .guide-content { font-size: 15px; }
  .guide-content h2 { font-size: 20px; }
  .guide-cta { padding: 24px 20px; }
  .guide-related { padding: 30px 0; }
  .guide-related-grid { grid-template-columns: 1fr 1fr; }
}
/* 가이드 페이지 - 사건 상세 스타일 응용 */

/* 히어로 */
.guide-hero {
  background: #1a1f36;
  padding: 80px 0 60px;
  text-align: center;
}

.guide-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.guide-hero-badge {
  display: inline-block;
  background: rgba(201, 169, 110, 0.15);
  color: #C9A96E;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.guide-hero-title {
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}

.guide-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 32px;
}

.guide-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #C9A96E;
  color: #1a1f36;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.guide-hero-cta:hover {
  background: #d8bc81;
  transform: translateY(-1px);
  color: #1a1f36;
}

/* 본문 */
.guide-content {
  padding: 60px 0 80px;
  background: #ffffff;
}

.guide-content-inner,
.guide-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  line-height: 1.85;
  font-size: 16px;
  color: #374151;
}

/* 섹션 소제목 (h2) - 사건 페이지 스타일 응용 */
.guide-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1f36;
  margin: 56px 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #C9A96E;
  text-align: center;
  letter-spacing: -0.5px;
}

.guide-content h2:first-child {
  margin-top: 0;
}

.guide-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1f36;
  margin: 32px 0 14px;
  padding-left: 12px;
  border-left: 3px solid #C9A96E;
  letter-spacing: -0.3px;
}

.guide-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1f36;
  margin: 24px 0 10px;
}

.guide-content p {
  margin: 0 0 16px;
  color: #374151;
}

.guide-content ul,
.guide-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.guide-content li {
  margin: 8px 0;
  color: #374151;
}

.guide-content b,
.guide-content strong {
  color: #1a1f36;
  font-weight: 700;
}

/* 골드 강조 */
.guide-content em {
  color: #1a1f36;
  font-style: italic;
}

/* 표 */
.guide-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 15px;
}

.guide-content table td {
  padding: 14px 18px;
  border: 1px solid #E5E7EB;
  vertical-align: top;
}

.guide-content table tr:first-child td {
  background: #1a1f36 !important;
  color: #ffffff;
  font-weight: 700;
  border-color: #1a1f36;
}

.guide-content table tr:nth-child(even) td {
  background: #F9FAFB;
}

/* 링크 */
.guide-content a {
  color: #1a4fa0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.guide-content a:hover {
  color: #C9A96E;
}

/* 인용 문구 */
.guide-content blockquote {
  background: #FAF7F0;
  border-left: 4px solid #C9A96E;
  padding: 18px 24px;
  margin: 24px 0;
  color: #1a1f36;
  font-size: 15.5px;
  border-radius: 0 8px 8px 0;
}

/* 모바일 */
@media (max-width: 768px) {
  .guide-hero {
    padding: 60px 0 40px;
  }
  .guide-hero-inner {
    padding: 0 20px;
  }
  .guide-hero-title {
    font-size: 26px;
  }
  .guide-hero-desc {
    font-size: 14px;
  }
  .guide-content {
    padding: 40px 20px 60px;
    font-size: 15px;
  }
  .guide-content h2 {
    font-size: 20px;
  }
  .guide-content h3 {
    font-size: 17px;
  }
  .guide-content table {
    font-size: 13px;
  }
}

/* 가이드 페이지 - 사건 상세 스타일 응용 */

/* 히어로 */
.guide-hero {
  background: #1a1f36;
  padding: 80px 0 60px;
  text-align: center;
}

.guide-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.guide-hero-badge {
  display: inline-block;
  background: rgba(201, 169, 110, 0.15);
  color: #C9A96E;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.guide-hero-title {
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}

.guide-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 32px;
}

.guide-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #C9A96E;
  color: #1a1f36;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.guide-hero-cta:hover {
  background: #d8bc81;
  transform: translateY(-1px);
  color: #1a1f36;
}

/* 본문 */
.guide-content {
  padding: 60px 0 80px;
  background: #ffffff;
}

.guide-content-inner,
.guide-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  line-height: 1.85;
  font-size: 16px;
  color: #374151;
}

/* 섹션 소제목 (h2) - 사건 페이지 스타일 응용 */
.guide-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1f36;
  margin: 56px 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #C9A96E;
  text-align: center;
  letter-spacing: -0.5px;
}

.guide-content h2:first-child {
  margin-top: 0;
}

.guide-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1f36;
  margin: 32px 0 14px;
  padding-left: 12px;
  border-left: 3px solid #C9A96E;
  letter-spacing: -0.3px;
}

.guide-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1f36;
  margin: 24px 0 10px;
}

.guide-content p {
  margin: 0 0 16px;
  color: #374151;
}

.guide-content ul,
.guide-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.guide-content li {
  margin: 8px 0;
  color: #374151;
}

.guide-content b,
.guide-content strong {
  color: #1a1f36;
  font-weight: 700;
}

/* 골드 강조 */
.guide-content em {
  color: #1a1f36;
  font-style: italic;
}

/* 표 */
.guide-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 15px;
}

.guide-content table td {
  padding: 14px 18px;
  border: 1px solid #E5E7EB;
  vertical-align: top;
}

.guide-content table tr:first-child td {
  background: #1a1f36 !important;
  color: #ffffff;
  font-weight: 700;
  border-color: #1a1f36;
}

.guide-content table tr:nth-child(even) td {
  background: #F9FAFB;
}

/* 링크 */
.guide-content a {
  color: #1a4fa0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.guide-content a:hover {
  color: #C9A96E;
}

/* 인용 문구 */
.guide-content blockquote {
  background: #FAF7F0;
  border-left: 4px solid #C9A96E;
  padding: 18px 24px;
  margin: 24px 0;
  color: #1a1f36;
  font-size: 15.5px;
  border-radius: 0 8px 8px 0;
}

/* 모바일 */
@media (max-width: 768px) {
  .guide-hero {
    padding: 60px 0 40px;
  }
  .guide-hero-inner {
    padding: 0 20px;
  }
  .guide-hero-title {
    font-size: 26px;
  }
  .guide-hero-desc {
    font-size: 14px;
  }
  .guide-content {
    padding: 40px 20px 60px;
    font-size: 15px;
  }
  .guide-content h2 {
    font-size: 20px;
  }
  .guide-content h3 {
    font-size: 17px;
  }
  .guide-content table {
    font-size: 13px;
  }
}


/* ─── 가이드 본문 박스 시스템 (자율 삽입) ─── */
.info-box {
  margin: 28px 0;
  padding: 20px 24px;
  border-radius: 4px;
  background: #f8f9fb;
  border-left: 4px solid #c4b389;
}
.info-box-title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 16px;
  color: #0F1B3D;
}
.info-box ul, .info-box ol {
  margin: 0;
  padding-left: 20px;
  line-height: 1.9;
}
.info-box li {
  margin-bottom: 6px;
}
.info-box a {
  color: #c4b389;
  font-weight: 600;
}

/* 박스 종류별 액센트 색상 */
.info-box-emergency {
  border-left-color: #DC2626;  /* 빨강 — 긴급 신고처 */
}
.info-box-emergency .info-box-title {
  color: #DC2626;
}
.info-box-procedure {
  border-left-color: #2563EB;  /* 파랑 — 절차 안내 */
}
.info-box-procedure .info-box-title {
  color: #2563EB;
}
.info-box-legal {
  border-left-color: #c4b389;  /* 골드 — 법적 근거 (기본) */
}
.info-box-warning {
  border-left-color: #F59E0B;  /* 주황 — 식별 신호/주의 */
  background: #FEF3C7;
}
.info-box-warning .info-box-title {
  color: #92400E;
}

@media (max-width: 768px) {
  .info-box { padding: 16px 18px; }
  .info-box-title { font-size: 15px; }
}
