.event-hero {
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  padding-top: 160px;
}

.event-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
}

.event-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  color: #fff;
}

.event-section {
  background: #f9fbfd;
  padding: 60px 0;
}

.event-filters {
  margin-bottom: 30px;
}

.filter-btn {
  background: #fff;
  border: 1px solid #014AB9;
  color: #014AB9;
  padding: 8px 20px;
  margin: 0 5px 10px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #014AB9;
  color: #fff;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
  align-items: start;
}

.event-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  position: relative;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-thumb {
  position: relative;
}

.event-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.event-date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #014AB9;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.event-content {
  padding: 20px;
}

.event-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.event-readmore {
  display: inline-block;
  color: #014AB9;
  font-weight: 500;
  margin-top: 10px;
  transition: 0.3s ease;
}

.event-readmore:hover {
  text-decoration: underline;
}
