/* Events page — focused video layout, dark theme */

.page-events {
  --ev-surface: #0a0a0a;
  --ev-surface-card: #161616;
  --ev-silver: #c0c0c0;

  background-color: var(--ev-surface);
  color: #fff;
  padding: 6.5rem 0 4rem;
}

.ev-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ev-page-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ev-page-head h1 {
  font-family: "Jost-Bold", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--ev-silver) !important;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.15;
}

.ev-page-head h1 + h1 {
  margin-top: 0.35rem;
}

.ev-featured {
  margin-bottom: 2rem;
}

.ev-featured .ev-card {
  max-width: 960px;
  margin: 0 auto;
}

.ev-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.ev-card {
  background: var(--ev-surface-card);
  border: 1px solid rgba(192, 192, 192, 0.12);
  overflow: hidden;
}

.ev-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #080808;
}

.ev-video-wrap iframe,
.ev-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.ev-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 2rem auto 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-events {
    padding-top: 5.5rem;
  }

  .ev-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
