/* Events — diagonal rhythm + timeline */
.eg-page.eg-events {
  font-family: "DM Sans", system-ui, sans-serif;
}
.events-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 48px;
}

@media (max-width: 820px) {
  .events-hero {
    grid-template-columns: 1fr;
  }
}

.events-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fbbf24;
  margin: 0 0 10px;
}

.events-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.12;
  margin: 0 0 14px;
}

.events-hero p {
  margin: 0;
  color: #94a3b8;
  max-width: 46ch;
  line-height: 1.65;
}

.events-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(251, 191, 36, 0.25);
  transform: rotate(-1.5deg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.events-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 240px;
}

.events-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.events-strip span {
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.12);
  color: #fde68a;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.events-timeline {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid rgba(148, 163, 184, 0.35);
  margin-left: 10px;
}

.events-item {
  position: relative;
  padding-bottom: 36px;
}

.events-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.25);
}

.events-item h2 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
}

.events-item time {
  font-size: 0.78rem;
  color: #64748b;
  display: block;
  margin-bottom: 8px;
}

.events-item p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 62ch;
}

.events-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
}

.events-cta:hover {
  text-decoration: underline;
}
