.tas-dest-explore {
  --tas-content-gutter: 20px;
  padding: 40px 0 48px;
  background: var(--background-color);
}

.tas-dest-explore__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  width: min(100% - calc(var(--tas-content-gutter) * 2), var(--layout-max-width));
  margin: 0 auto;
}

.tas-dest-explore__heading {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary);
}

.tas-dest-explore__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.tas-dest-explore__divider::before,
.tas-dest-explore__divider::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--accent);
  opacity: 0.65;
}

.tas-dest-explore__divider span {
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
  background: transparent;
}

.tas-dest-explore__intro {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.tas-dest-explore__checklist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tas-dest-explore__check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-body);
}

.tas-dest-explore__check-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.tas-dest-explore__btn {
  width: 100%;
  max-width: 280px;
}

.tas-dest-explore__col--map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tas-dest-explore__map {
  position: relative;
  width: 100%;
  /* Match china-map.svg viewBox (1123 × 942) so pin % tracks the map image */
  aspect-ratio: 1123 / 942;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.tas-dest-explore__map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
}

.tas-dest-explore__pin {
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%);
  padding: 5px 5px;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  color: var(--text-on-primary);
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

a.tas-dest-explore__pin {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

a.tas-dest-explore__pin:hover,
a.tas-dest-explore__pin:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
  background: var(--accent);
  color: var(--text-on-primary);
  outline: none;
}

.tas-dest-explore__col--highlights {
  padding: 22px 18px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: var(--white);
}

.tas-dest-explore__hl-title {
  margin: 0 0 18px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.tas-dest-explore__hl-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tas-dest-explore__hl-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none !important;
  color: inherit;
  transition: opacity 0.2s ease;
}

.tas-dest-explore__hl-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tas-dest-explore__hl-item:first-child {
  padding-top: 0;
}

a.tas-dest-explore__hl-item:hover {
  opacity: 0.88;
}

.tas-dest-explore__hl-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
}

.tas-dest-explore__hl-thumb img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.tas-dest-explore__hl-name {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.tas-dest-explore__hl-desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tas-dest-explore__view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding-top: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent) !important;
  text-decoration: none !important;
}

.tas-dest-explore__view-all:hover {
  color: var(--primary) !important;
}

@media (max-width: 1199px) {
  .tas-dest-explore__inner {
    grid-template-columns: 1fr 1fr;
  }

  .tas-dest-explore__col--text {
    grid-column: 1 / -1;
  }

  .tas-dest-explore__col--map {
    grid-column: 1;
  }

  .tas-dest-explore__col--highlights {
    grid-column: 2;
  }
}

@media (max-width: 767px) {
  .tas-dest-explore {
    padding: 32px 0 40px;
  }

  .tas-dest-explore__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tas-dest-explore__col--text,
  .tas-dest-explore__col--map,
  .tas-dest-explore__col--highlights {
    grid-column: 1;
  }

  .tas-dest-explore__btn {
    max-width: 100%;
  }
}
