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

/* 히어로 */
.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;
  }
}

