.events-hero-card {
  position: relative;
  overflow: hidden;
  margin: 28px 0 36px;
  padding: 50px 46px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(5, 24, 44, 0.96), rgba(8, 58, 92, 0.9)), url("/images/background.png");
  background-size: cover;
  background-position: center;
  color: white;
  box-shadow: 0 18px 48px rgba(5, 24, 44, 0.18);
}

.events-hero-label {
  margin-bottom: 14px;
  color: #7dd3fc;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.events-hero-card h1 {
  margin: 0 0 16px;
  color: white;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.15;
}

.events-hero-subtitle {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.75;
}

.event-list {
  display: grid;
  gap: 18px;
  margin: 36px 0 54px;
}

.event-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 32px;
  gap: 24px;
  align-items: center;
  padding: 26px 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: white;
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.event-date {
  color: #0284c7;
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}

.event-content h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 1.18rem;
  line-height: 1.4;
}

.event-speaker {
  margin: 0 0 6px;
  color: #334155;
  font-weight: 700;
}

.event-summary {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.event-arrow {
  color: #0284c7;
  font-size: 1.4rem;
  font-weight: 800;
}

@media (max-width: 760px) {
  .event-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .event-arrow {
    display: none;
  }
}

/*# sourceMappingURL=events.css.map */