/* EVENT SECTION */
.events-section {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 15px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #0a2a70; /* Theme Navy Blue */
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #1e57d6; /* Highlight Blue (lighter version of #0a2a70) */
  margin: 12px auto 0;
  border-radius: 2px;
}

.events-grid {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.event-card {
  background: #e8edfa; /* soft light blue based on theme */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(10, 42, 112, 0.15); /* theme-color shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(10, 42, 112, 0.3); /* stronger theme-color shadow */
}

.event-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #1e57d6; /* highlight accent */
}

.event-info {
  padding: 15px;
  text-align: center;
}

.event-date {
  display: inline-block;
  background: #0a2a70; /* Theme color */
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.event-title {
  font-size: 20px;
  color: #0a2a70; /* Theme navy */
  margin: 10px 0 0;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.event-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.event-title a:hover {
  color: #1e57d6; /* highlight hover */
}
