/* Section header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
  margin-top: 64px;
}

.section-title {
  font-family: 'Domine', serif;
  font-weight: 700;
  font-size: 52px;
}

.see-all-btn {
  background-color: #ffcc29;
  color: #121212;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 20px;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.see-all-btn:hover {
  font-size: 22px;
}

/* Events grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.events-grid a {
  text-decoration: none !important;
  color: inherit;
  display: block;
}

.events-grid a * {
  text-decoration: none !important;
}

/* Event card */
.event-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 440px;
}

.event-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.event-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
  margin-bottom: 0;
}

.event-content {
  padding: 20px 16px 16px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.event-title {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-description {
  font-family: 'Domine', serif;
  font-size: 26px;
  font-weight: 700;
  color: #121212;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 9999;
}

/* ── Responsive ─────────────────────────────────────── */

@media(max-width: 1200px) {
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 24px;
    margin-bottom: 40px;
  }

  .event-card {
    height: auto;
  }

  .event-image {
    height: 220px;
  }

  .event-content {
    padding: 16px;
  }

  .event-title {
    font-size: 20px;
  }

  .event-description {
    font-size: 22px;
  }

  .section-title {
    font-size: 32px;
  }

  .see-all-btn {
    font-size: 16px;
    padding: 10px 18px;
  }

  .section-header {
    margin-bottom: 32px;
    margin-top: 32px;
  }

  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    overflow: hidden;
  }

  .hero {
    height: 500px;
  }

  .hero-content {
    padding: 0 40px;
  }
}