/* ── 1. EVENT HERO ─────────────────────────────────────────────────────── */

/* Extends .hero.hero--compact (hero.css). Single-column, no cert tree. */
.event-hero .hero-image-bg img {
  will-change: transform;
}

.event-hero {
  grid-template-columns: 1fr;
}

.event-hero .hero-left {
  max-width: 800px;
}

.event-hero .hero-title {
  font-size: 60px;
  word-spacing: normal;
  margin-bottom: 28px;
}

.event-hero .hero-title-line {
  white-space: normal;
}

/* Breadcrumb — mirrors .post-hero .ph-breadcrumb in post-single.css */
.event-hero .ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}
.event-hero .ph-breadcrumb a { color: inherit; text-decoration: none; }
.event-hero .ph-breadcrumb a:hover { color: var(--white); }
.event-hero .ph-breadcrumb .material-icons { font-size: 14px; }

/* Date + location pills below the title */
.event-hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.event-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.event-meta-item .material-icons {
  font-size: 13px;
  color: var(--yellow);
  flex-shrink: 0;
}


/* ── RESPONSIVE ────────────────────────────────────────────────────────── */

@media (max-width: 1023px) {
  .event-hero .hero-left {
    max-width: none;
  }
}

@media (max-width: 699px) {
  .event-hero .hero-title {
    font-size: 36px;
  }
}
