/* Tour page layout */
.tour-page {
  max-width: 1020px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}
.tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.tour-back {
  font-size: 13px;
  color: var(--ds-link, #0a3a8c);
  text-decoration: none;
  font-weight: 600;
}
.tour-back:hover { text-decoration: underline; }
.tour-slide-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #39d0ff;
  opacity: .85;
}
.tour-img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 28px rgba(4,13,34,0.14);
  border: 1px solid var(--ds-border, #DDE1EA);
  margin: 20px 0 28px;
}
.tour-caption h1 {
  font-size: 24px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  color: #040d22;
  margin: 0 0 8px;
}
.tour-caption p {
  font-size: 15px;
  color: #4A5568;
  margin: 0 0 28px;
  line-height: 1.6;
}
.tour-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}
.tour-nav .spacer { flex: 1; }
@media (max-width: 600px) {
  .tour-page { padding: 20px 16px 32px; }
  .tour-caption h1 { font-size: 20px; }
}
