.page-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.page-icon {
  width: 20px;
  height: 20px;
}

.page-heading {
  font-size: 1.1rem;
  margin: 0;
}

.tour-description {
  background-color: #e1e1e1;
  padding: 10px 10px; /* ⬅️ 위아래 여백 축소 */
  border-radius: 6px;
  font-size: 13px; /* ⬅️ 조금 더 작게 유지 */
  line-height: 1.5; /* ⬅️ 줄간격도 살짝 줄임 */
  color: #222;
  align-items: center;
}
.tour-description p {
  margin: 0;
}

.tour-image-box {
  margin-top: 20px;
}

.tour-image {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

.tour-info-box {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tour-info-row.full {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  background: #fff;
}

.tour-info-row.half-wrapper {
  display: flex;
  gap: 16px;
}

.half-box {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  background: #fff;
}

.tour-info-wrapper {
  margin-top: 30px;
}

.tour-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 15px;
}

.tour-info-row {
  display: flex;
  gap: 20px;
}

.tour-info.full-width {
  width: 100%;
}

.tour-info.half {
  flex: 1;
}

.tour-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.tour-info-label {
  font-weight: 700;
  margin-bottom: 4px;
}

.tour-guide {
  margin-top: 40px;
}

.guide-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1; /* 라인 높이 줄이기 */
  display: flex; /* 아이콘과 텍스트 수직 정렬 */
  align-items: center; /* 수직 정렬 정확히 */
  gap: 4px; /* 화살표와 텍스트 간격 */
}

.guide-table {
  width: 100%;
  border-top: 3px solid #173f93;
  border-collapse: collapse;
}

.guide-table th,
.guide-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
}

.guide-table th {
  background-color: #f9f9f9;
  width: 150px;
  white-space: nowrap;
  text-align: left;
}
