/* My tours page */
.wa-my-tours-title {
  letter-spacing: 0.03em;
}

.wa-my-tours-subtitle {
  color: var(--wa-accent-blue);
  font-size: 1.15rem;
}

.wa-tour-card {
  width: 320px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  border: 1px solid var(--wa-border-muted);
  box-shadow: 0 4px 24px rgba(var(--wa-accent-cyan-rgb), 0.18), 0 1.5px 6px rgba(var(--wa-accent-cyan-rgb), 0.10);
  overflow: hidden;
  background: var(--bulma-body-background-color);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.wa-tour-card:hover,
.wa-tour-card:focus-within {
  box-shadow: 0 8px 32px rgba(var(--wa-accent-cyan-rgb), 0.25), 0 2px 8px rgba(var(--wa-accent-cyan-rgb), 0.15);
  transform: scale(1.03);
  border-color: var(--wa-accent-cyan);
}

.wa-tour-thumb {
  height: 55%;
  width: 100%;
  background: var(--bulma-body-background-color);
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.wa-tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-card:hover .tour-thumb-img {
  transform: scale(1.1);
  transition: transform 0.25s cubic-bezier(0.4,0.2,0.2,1);
}

.tour-thumb-img {
  transition: transform 0.25s cubic-bezier(0.4,0.2,0.2,1);
}

.tour-card-alt:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.18), 0 1.5px 12px rgba(30,64,175,0.13);
  transform: translateY(-4px) scale(1.025);
}

.tour-thumb-alt {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  overflow: hidden;
  background: var(--bulma-body-background-color);
  height: 55%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.tour-thumb-alt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.tour-info {
  height: 45%;
  width: 100%;
  padding: 14px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  background: transparent;
}

.tour-title {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: center;
}

.tour-meta {
  font-size: 0.97rem;
  color: #cbd5e1;
  text-align: center;
  margin-bottom: 8px;
}

/* Tour page (templates/tour.html) */
.wa-tour-page #pano {
  width: 100%;
  height: 100%;
}

.wa-tour-page .wa-tour-noscript-table {
  width: 100%;
  height: 100%;
}

.wa-tour-page .wa-tour-noscript-table td {
  vertical-align: middle;
}

.wa-tour-page .wa-tour-noscript-message {
  text-align: center;
}
