/* BLOBS — events page */
.blob { opacity: 0.15; }
.blob-1 { width: 520px; height: 520px; background: var(--blue); top: -220px; right: -160px; }
.blob-2 { width: 460px; height: 460px; background: var(--purple); bottom: -200px; left: -150px; animation-delay: -8s; }
.blob-3 { width: 360px; height: 360px; background: var(--teal); top: 55%; left: -160px; animation-delay: -14s; opacity: 0.1; }

/* PAGE HERO */
.page-hero { padding: 160px 32px 70px; text-align: center; position: relative; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.breadcrumb a { color: var(--orange); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(79,157,255,0.14); border: 1px solid rgba(79,157,255,0.35); color: #7ec8ff; border-radius: 50px; padding: 7px 16px; font-size: 13px; font-weight: 700; margin-bottom: 22px; animation: fadeUp 0.7s ease both; }
.page-title { font-size: clamp(40px, 6.5vw, 78px); font-weight: 900; line-height: 1.0; letter-spacing: -2.5px; margin-bottom: 20px; animation: fadeUp 0.7s 0.08s ease both; }
.page-title .accent { background: linear-gradient(120deg, var(--blue), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-sub { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 620px; margin: 0 auto; line-height: 1.7; animation: fadeUp 0.7s 0.16s ease both; }

/* SECTION */
.section { padding: 80px 32px; }
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 56px; max-width: 680px; margin-left: auto; margin-right: auto; }

/* EVENTS GRID */
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.events-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* CTA */
.cta-section { text-align: center; padding: 100px 32px 120px; }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-title { font-size: clamp(32px, 5vw, 52px); font-weight: 900; letter-spacing: -1.6px; line-height: 1.1; margin-bottom: 16px; }
.cta-title .accent { background: linear-gradient(120deg, var(--blue), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 36px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links .nav-link { display: none; }
  .section { padding: 60px 20px; }
  .page-hero { padding: 130px 20px 50px; }
  .events-grid { grid-template-columns: 1fr; }
  .events-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .events-grid--3 { grid-template-columns: 1fr; }
  .event-card { padding: 24px 20px; }
}
