
/* Mosaic grid */
.whats-on-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

/* Clickable card */
.event-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: block;
  text-decoration: none !important;
  color: inherit !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Ensure no underlines or color changes inside the link */
.event-card h3,
.event-card p,
.event-card span {
  text-decoration: none !important;
  color: inherit !important;
}

.event-card .event-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.event-card h3 {
  font-size: 18px;
  margin: 0 0 5px;
}
.event-card .event-date {
  font-weight: bold;
  margin-bottom: 10px;
}
.event-card p {
  margin: 0 0 10px;
}

/* Single item centered block */
.single-whats-on {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.single-whats-on h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.single-whats-on .event-hero img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}
.single-whats-on p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Buttons */
.event-ticket-btn {
  display: inline-block;
  background: #28a745;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s ease;
}
.event-ticket-btn:hover {
  background: #218838;
}
.back-to-listing {
  display: inline-block;
  margin-top: 20px;
  background: #6c757d;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background 0.2s ease;
}
.back-to-listing:hover {
  background: #5a6268;
}
