.eventsHero{
  padding: 80px 0 60px;
  text-align:center;
  background: linear-gradient(180deg, rgba(255,106,0,.05), rgba(255,106,0,0));
  border-bottom:1px solid var(--line);
}

.eventsHero__kicker{
  font-size:13px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--muted);
}

.eventsHero__title{
  font-size:48px;
  margin:10px 0;
  letter-spacing:-.02em;
}

.eventsHero__sub{
  max-width:680px;
  margin:0 auto;
  color:var(--muted);
  line-height:1.7;
}

.eventsHero__cta{
  margin-top:25px;
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.sectionTitle{
  font-size:28px;
  margin-bottom:25px;
}

.eventCards{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.eventCard{
  padding:25px;
  border-radius:22px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadowSoft);
  transition:.2s ease;
}

.eventCard:hover{
  transform:translateY(-4px);
  box-shadow: var(--shadow);
}

.highlight{
  border:1px solid rgba(255,106,0,.35);
  background: linear-gradient(135deg, rgba(255,106,0,.08), rgba(255,106,0,.02));
}

.eventYear{
  font-size:13px;
  font-weight:900;
  color:var(--brand);
  margin-bottom:8px;
}

.eventLink{
  font-weight:900;
  color:var(--brand);
  display:inline-block;
  margin-top:10px;
}

.timeline{
  position:relative;
  padding-left:30px;
}

.timeline:before{
  content:"";
  position:absolute;
  left:10px;
  top:0;
  bottom:0;
  width:2px;
  background:var(--line);
}

.timelineItem{
  position:relative;
  margin-bottom:30px;
}

.timelineDot{
  position:absolute;
  left:-1px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--brand);
  top:6px;
}

.timelineYear{
  font-weight:900;
  margin-bottom:4px;
}

.timelineLink{
  font-weight:800;
  font-size:14px;
  color:var(--brand);
}

.aboutEvents{
  max-width:750px;
  line-height:1.8;
  color:var(--muted);
}

.eventsFooter{
  padding:40px 0;
  border-top:1px solid var(--line);
  text-align:center;
}