/* English Bangkok private tours: photo layout v6 */

/* Catalogue cards: switch to single photos and make them a bit taller. */
.tour-card .tour-card-media {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  background: #e7f0fb !important;
}
.tour-card .tour-card-media > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Tour page: use a larger collage and make both intro columns the same size. */
.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.page-hero-copy {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.page-hero-img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 100% !important;
  height: auto !important;
  overflow: hidden !important;
  justify-self: stretch !important;
  align-self: stretch !important;
  margin: 0 !important;
  border-radius: 24px !important;
  background: #e7f0fb !important;
}
.page-hero-img > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (max-width: 900px) {
  .page-hero-grid {
    grid-template-columns: 1fr !important;
    max-width: none !important;
    gap: 18px !important;
  }
  .page-hero-img {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 560px) {
  .tour-card .tour-card-media { aspect-ratio: 16 / 10 !important; }
  .page-hero-img { aspect-ratio: 4 / 3 !important; border-radius: 18px !important; }
}
