.events-body {
  min-height: 100vh;
  color: var(--text);
  background: #070b10;
}

.events-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 16%, rgba(242, 189, 91, .16), transparent 26rem),
    radial-gradient(circle at 12% 22%, rgba(119, 33, 20, .3), transparent 34rem),
    linear-gradient(135deg, #080c12, #101820 48%, #140e13);
}

.events-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(248, 237, 216, .08);
  background: rgba(7, 10, 14, .88);
  backdrop-filter: blur(14px);
}

.events-shell {
  width: min(1120px, calc(100% - 42px));
  margin: 0 auto;
  padding: 74px 0 92px;
}

.events-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  min-height: 430px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.events-hero h1,
.section-copy h2 {
  margin: 0;
  color: #fff3dc;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}

.events-hero h1 {
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  line-height: .88;
}

.events-hero p,
.section-copy p,
.event-grid p {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.events-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-event,
.secondary-event {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.primary-event {
  color: #201408;
  background: linear-gradient(135deg, #ffd36a, #a96a18);
  box-shadow: 0 18px 44px rgba(169, 106, 24, .24);
}

.secondary-event {
  color: #f6dfac;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
}

.event-highlight,
.event-grid article {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(22, 28, 36, .92), rgba(10, 14, 20, .9));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.event-highlight {
  padding: 30px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.event-highlight span,
.event-grid span {
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.event-highlight strong {
  color: #fff3dc;
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.event-category {
  margin-top: 58px;
}

.section-copy {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: .95;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.event-grid article {
  min-height: 230px;
  padding: 24px;
}

.event-grid h3 {
  margin: 16px 0 10px;
  color: #fff3dc;
  font-family: 'Cinzel', serif;
  font-size: 1.48rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.compact-events article {
  min-height: 205px;
}

.two-events {
  grid-template-columns: repeat(2, 1fr);
}

.battle-events {
  padding-bottom: 18px;
}

@media (max-width: 980px) {
  .events-hero,
  .event-grid,
  .two-events {
    grid-template-columns: 1fr;
  }
}
/* Prevent hero title/card overlap on Events page */
.events-hero {
  grid-template-columns: minmax(0, 680px) minmax(280px, 320px);
  justify-content: space-between;
}

.events-hero h1 {
  max-width: 680px;
  font-size: clamp(3.4rem, 6.2vw, 6.6rem);
}

.event-highlight {
  justify-self: end;
}

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

  .event-highlight {
    justify-self: start;
    width: min(100%, 420px);
  }
}