/* IKCTA 관광 탐색 — 국내·해외·지역 허브 */
.tourExploreHero {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}
@media (min-width: 640px) {
  .tourExploreHero {
    grid-template-columns: repeat(3, 1fr);
  }
}
.tourExploreHero__card {
  display: block;
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(14, 165, 233, 0.25);
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.08), rgba(255, 255, 255, 0.95));
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tourExploreHero__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
}
.tourExploreHero__card--domestic {
  border-color: rgba(34, 197, 94, 0.35);
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.1), #fff);
}
.tourExploreHero__card--world {
  border-color: rgba(99, 102, 241, 0.35);
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.1), #fff);
}
.tourExploreHero__card--inbound {
  border-color: rgba(245, 158, 11, 0.35);
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.1), #fff);
}
.tourExploreHero__emoji {
  font-size: 2rem;
  line-height: 1;
}
.tourExploreHero__title {
  margin: 8px 0 4px;
  font-size: 1.15rem;
}
.tourExploreHero__desc {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
}
.tourExploreGrid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.tourExploreTile {
  display: block;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  text-decoration: none;
  color: inherit;
}
.tourExploreTile:hover {
  border-color: #0ea5e9;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.12);
}
.tourExploreTile__emoji {
  font-size: 1.5rem;
}
.tourExploreTile__name {
  margin: 6px 0 2px;
  font-weight: 700;
  font-size: 0.95rem;
}
.tourExploreTile__tag {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
}
.tourExploreDetail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.tourExploreBreadcrumb {
  font-size: 0.85rem;
  margin: 0 0 12px;
}
.tourExploreBreadcrumb a {
  color: #0369a1;
}

.tourGeoBanner {
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(14, 165, 233, 0.35);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), #fff);
}
.tourGeoBanner--loading {
  border-style: dashed;
}
.tourGeoBanner--ready {
  border-color: rgba(34, 197, 94, 0.45);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), #fff);
}
.tourGeoBanner__head {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
}
.tourGeoBanner__sub {
  margin: 0 0 10px;
  line-height: 1.5;
}
.tourGeoBanner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.tourExploreHero__card--geo {
  border-color: rgba(34, 197, 94, 0.55) !important;
  grid-column: 1 / -1;
}
.tourExploreTile--geo {
  border-color: #0ea5e9 !important;
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.35);
}
