/* ===============================
   THRILL CIRCUS ACT GRID
   =============================== */

.acts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.act-card {
  text-align: center;
}

.act-card img {
  width: 100%;
  height: auto;          /* <-- THIS is the key fix */
  max-height: 460px;     /* keeps rows balanced */
  object-fit: contain;  /* shows FULL image */
  border-radius: 10px;
  display: block;
  margin-bottom: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .acts-grid {
    grid-template-columns: 1fr;
  }
}
.act-card h3 a {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
.act-card h3 a {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

