
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.event-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.event-top {
  background: #0058a6;
  color: white;
  padding: 10px;
  font-weight: bold;
}

.event-location {
  background: white;
  color: #333;
  padding: 5px 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.event-type {
  padding: 8px;
  color: white;
  font-weight: bold;
}

.event-type.online {
  background-color: #4cd137;
}

.event-type.physical-in-person {
  background-color: #44bd32;
}

.event-image img {
  width: 100%;
  height: auto;
}

h3 {
  font-size: 18px;
  padding: 10px 0;
  margin: 0;
}

.learn-more {
  display: inline-block;
  background: orange;
  color: white;
  padding: 10px 20px;
  margin: 15px 0;
  border-radius: 5px;
  text-decoration: none;
}
