/*
 Theme Name:   Astra Child
 Theme URI:    https://example.com/
 Description:  Child theme for the Twenty Twenty-Five theme
 Author:       Your Name
 Author URI:   https://example.com
 Template:     astra
 Version:      1.0.0
*/

/* Add your custom styles below */

.events-grid-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.events-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important; /* force 3 across */
  gap: 20px !important;
}

.event-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.event-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-title {
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.event-date,
.event-time {
  margin: 4px 0;
  font-size: 0.95rem;
  color: #444;
}

.event-booking {
  margin-top: auto;
  display: inline-block;
  padding: 10px 15px;
  background: #e20b71;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  transition: background 0.2s ease;
}

.event-booking:hover {
  background: #102C66;
  color: white;
}