
.zsongoda-event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.zsongoda-event-card {
  background: #ffffff;
  border: 1px solid #DDE8ED;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 12px 28px rgba(18,62,104,0.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.zsongoda-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(18,62,104,0.12);
}

.event-number {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #195A96;
  margin-bottom: 12px;
}

.zsongoda-event-card h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  color: #123E68 !important;
  margin: 0 0 14px 0;
}

.zsongoda-event-card p {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4E5B60;
  margin: 0;
}

.zsongoda-event-cta {
  text-align: center;
  margin-top: 38px;
}

.zsongoda-event-cta p {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: #4E5B60;
  margin-bottom: 18px;
}

.zsongoda-event-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 14px;
  background: #123E68;
  color: #ffffff !important;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all .25s ease;
}

.zsongoda-event-cta a:hover {
  background: #195A96;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .zsongoda-event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .zsongoda-event-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zsongoda-event-card {
    padding: 26px;
  }
}
