.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto 36px;
}
.tour-card {
  position: relative;
  overflow: hidden;
}
.tour-card > a > img {
  width: 100%; height: auto;
  display: block;
}

/* base label (visible by default) */
.tour-base {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 22px 22px;
  transition: opacity 0.35s ease;
}
.tour-card:hover .tour-base { opacity: 0; }
.tour-num  { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.tour-name { font-size: 16.5px; color: var(--white); font-weight: 400; line-height: 1.3; }

/* arrow (always visible) */
.tour-arrow {
  position: absolute;
  bottom: 18px; right: 22px;
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
  pointer-events: none;
  z-index: 10;
}

/* overlay (slides up on hover) */
.tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateY(100%);
  transition: transform 0.38s ease;
}
.tour-card:hover .tour-overlay { transform: translateY(0); }
.tour-ov-num   { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.tour-ov-name  { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 17.5px; color: var(--white); margin-bottom: 13px; line-height: 1.3; }
.tour-stops    { margin-bottom: 13px; }
.tour-stop {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 9px;
}
.tour-stop-icon {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.tour-stops-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.tour-stops-header span {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: var(--white);
  font-weight: 600;
}
.tour-stop-bullet {
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.35;
}
.tour-stop span { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px; color: rgba(255,255,255,0.76); line-height: 1.35; }
.tour-stop-opt span { font-style: italic; }
.tour-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 11px;
  margin-top: auto;
}
.tour-meta-item { display: flex; align-items: center; gap: 5px; }
.tour-meta-icon {
  width: 20px; height: 20px;
}
.tour-meta-item span { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px; color: rgba(255,255,255,0.78); }
