/* ============================================================
   pages.css — page-specific overrides
   ============================================================ */

/* ---------- Top hero ---------- */
.p-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(34, 5, 38, 0.90) 0%, rgba(74, 12, 79, 0.78) 42%, rgba(111, 17, 115, 0.54) 100%),
    radial-gradient(circle at 86% 10%, rgba(244, 169, 58, 0.22), transparent 38%),
    linear-gradient(135deg, #4a0c4f 0%, #6f1173 40%, #8b168f 100%);
  color: #fff;
  padding-block: clamp(110px, 16vw, 180px) clamp(60px, 10vw, 120px);
  isolation: isolate;
}
.p-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.04) 0 1px, transparent 1px 80px);
  pointer-events: none;
  z-index: -1;
}
.p-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(28, 8, 31, 0.58));
  pointer-events: none;
  z-index: -1;
}
.p-hero__inner {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  align-items: center;
}
.p-hero__copy {
  display: grid;
  gap: 24px;
  position: relative;
}
.p-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.p-hero__title .accent {
  background: linear-gradient(120deg, #f4d96a, #f4a93a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.p-hero__sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.375rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 580px;
}
.p-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ---------- About section ---------- */
.p-about {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: 1fr;
}
.p-about__text { display: grid; gap: 20px; }
.p-about__text h2 { font-size: var(--fs-h2); }
.p-about__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(74, 12, 79, 0.18)),
    url("../assets/images/section/about-side.jpg") center / cover no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.p-about__media-illust {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  font-weight: 700;
  opacity: 0;
}
@media (min-width: 1024px) {
  .p-about { grid-template-columns: 1fr 1fr; gap: 80px; }
}

/* ---------- Photo-backed sections ---------- */
.p-section-photo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 247, 244, 0.86), rgba(247, 247, 244, 0.94)),
    var(--section-photo) center / cover no-repeat,
    var(--color-bg);
}
.p-section-photo--stats { --section-photo: url("../assets/images/section/stats-bg.jpg"); }
.p-section-photo--guidelines-hint { --section-photo: url("../assets/images/section/guidelines-hint-bg.jpg"); }
.p-section-photo--mission { --section-photo: url("../assets/images/section/mission-bg.jpg"); }
.p-section-photo--rules { --section-photo: url("../assets/images/section/rules-bg.jpg"); }
.p-section-photo > .l-container {
  position: relative;
  z-index: 1;
}

/* ---------- Flow ---------- */
.p-flow {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  position: relative;
}
.p-flow__step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 168px 24px 24px;
  border: 1px solid var(--color-border);
  display: grid;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.p-flow__step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 144px;
  background: center / cover no-repeat;
}
.p-flow__step::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 144px;
  background: linear-gradient(180deg, rgba(42, 7, 46, 0.02), rgba(42, 7, 46, 0.20));
  pointer-events: none;
}
.p-flow__step:nth-child(1)::before { background-image: url("../assets/images/flow/flow-01-reserve.jpg"); }
.p-flow__step:nth-child(2)::before { background-image: url("../assets/images/flow/flow-02-use.jpg"); }
.p-flow__step:nth-child(3)::before { background-image: url("../assets/images/flow/flow-03-record.jpg"); }
.p-flow__step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-primary);
  line-height: 1;
}
.p-flow__step h3 { font-size: 1.1rem; }
.p-flow__step p { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.85; }
@media (min-width: 768px) {
  .p-flow { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ---------- Stat strip ---------- */
.p-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .p-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- CTA banner ---------- */
.p-cta-banner {
  background:
    linear-gradient(90deg, rgba(74, 12, 79, 0.94) 0%, rgba(111, 17, 115, 0.82) 52%, rgba(111, 17, 115, 0.44) 100%),
    url("../assets/images/section/cta-banner.jpg") center / cover no-repeat,
    linear-gradient(120deg, var(--color-primary-dark), var(--color-primary) 60%, #d04dd6);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.p-cta-banner::before {
  content: "";
  position: absolute;
  inset: -20px -10px auto auto;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(244, 169, 58, 0.4), transparent 70%);
  pointer-events: none;
}
.p-cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.3;
}
.p-cta-banner p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.85;
}
.p-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (min-width: 768px) {
  .p-cta-banner { grid-template-columns: 1.6fr 1fr; }
  .p-cta-banner__actions { flex-direction: column; }
}

/* ---------- Reservation page ---------- */
.p-reserve-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr); /* auto トラックの max-content 膨張を防ぎ横はみ出しを根絶 */
}
.p-reserve-layout__main { display: grid; gap: 24px; min-width: 0; grid-template-columns: minmax(0, 1fr); }
.p-reserve-layout__main > * { min-width: 0; } /* グリッド項目(ステッパー/フォーム)を縮小可能に */
.p-reserve-layout__aside {
  display: grid;
  gap: 16px;
  align-content: start;
}
@media (min-width: 1024px) {
  .p-reserve-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
  }
  .p-reserve-layout__aside { position: sticky; top: calc(var(--header-height) + 24px); }
}
.p-reserve-aside-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 243, 252, 0.96)),
    var(--reserve-aside-image) center / cover no-repeat,
    var(--color-primary-soft);
  border: 1px solid var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  overflow: hidden;
}
.p-reserve-aside-card:nth-child(1) { --reserve-aside-image: url("../assets/images/reserve/step-03-content.jpg"); }
.p-reserve-aside-card:nth-child(2) { --reserve-aside-image: url("../assets/images/reserve/step-06-confirm.jpg"); }
.p-reserve-aside-card:nth-child(3) { --reserve-aside-image: url("../assets/images/reserve/step-01-date.jpg"); }
.p-reserve-aside-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-reserve-aside-card ul {
  display: grid;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.p-reserve-aside-card ul li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 700;
  margin-right: 6px;
}
.p-reserve-step {
  display: none;
}
.p-reserve-step.is-current {
  display: block;
  animation: stepEnter var(--dur-base) var(--ease-out);
}
@keyframes stepEnter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.p-reserve-feedback {
  margin-top: 16px;
}

@media (max-width: 767px) {
  .p-reserve-page {
    padding-bottom: calc(140px + env(safe-area-inset-bottom));
  }

  .p-reserve-page .l-page-hero {
    padding-block: 56px 44px;
  }

  .p-reserve-page .l-page-hero__inner {
    gap: 10px;
  }

  .p-reserve-page .l-page-hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .p-reserve-page .l-page-hero p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .p-reserve-page .l-section {
    padding-block: 24px 48px;
  }

  .p-reserve-page .p-reserve-layout {
    gap: 20px;
  }

  .p-reserve-page .p-reserve-layout__main {
    gap: 16px;
  }

  .p-reserve-page .p-reserve-layout__aside {
    order: -1;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .p-reserve-page .p-reserve-aside-card {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .p-reserve-page .p-reserve-aside-card:nth-child(n+2) {
    display: none;
  }

  .p-reserve-page .p-reserve-aside-card h3 {
    font-size: 0.92rem;
  }

  .p-reserve-page .p-reserve-aside-card ul {
    gap: 3px;
    font-size: 0.84rem;
    line-height: 1.55;
  }
}

/* ---------- Calendar page ---------- */
.p-calendar-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .p-calendar-layout { grid-template-columns: 1.2fr 1fr; }
}
.p-calendar-aside-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.97)),
    var(--calendar-aside-image) center / cover no-repeat,
    #fff;
}
.p-calendar-aside-card > * {
  position: relative;
  z-index: 1;
}
.p-calendar-aside-card--legend { --calendar-aside-image: url("../assets/images/reserve/step-01-date.jpg"); }
.p-calendar-aside-card--hint { --calendar-aside-image: url("../assets/images/reserve/step-01-date.jpg"); }

/* ---------- Event log ---------- */
.p-eventlog-toolbar {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.p-eventlog-toolbar__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.p-eventlog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .p-eventlog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .p-eventlog-grid { grid-template-columns: repeat(3, 1fr); }
}
.p-eventlog-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-muted);
  display: none;
}
.p-eventlog-empty.is-active { display: block; }

/* ---------- Event detail ---------- */
.p-eventdetail {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  max-width: 880px;
  margin-inline: auto;
}
.p-eventdetail__hero {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(42, 7, 46, 0.04), rgba(42, 7, 46, 0.22)),
    url("../assets/images/event/event-01-mymuseum.jpg") center / cover no-repeat;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.p-eventdetail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.p-eventdetail__meta strong { color: var(--color-text); }
.p-eventdetail__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
}
.p-eventdetail__section {
  display: grid;
  gap: 12px;
}
.p-eventdetail__section h2 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-eventdetail__section h2::before {
  content: "";
  display: block;
  width: 6px; height: 22px;
  background: var(--color-primary);
  border-radius: 3px;
}
.p-eventdetail__section p {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--color-text);
}

/* ---------- Guidelines ---------- */
.p-guidelines {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .p-guidelines { grid-template-columns: 280px 1fr; }
}
.p-guidelines__main { display: grid; gap: 32px; }
.p-guidelines__aside {
  display: grid;
  gap: 16px;
  align-content: start;
}
@media (min-width: 1024px) {
  .p-guidelines__aside { position: sticky; top: calc(var(--header-height) + 24px); }
}
.p-guideline-section {
  scroll-margin-top: calc(var(--header-height) + 16px);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.p-guideline-section:not(#contact) {
  padding-top: 186px;
}
.p-guideline-section:not(#contact)::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 158px;
  background:
    linear-gradient(180deg, rgba(42, 7, 46, 0.02), rgba(42, 7, 46, 0.24)),
    var(--guideline-image) center / cover no-repeat;
}
.p-guideline-section > * {
  position: relative;
  z-index: 1;
}
#organizer { --guideline-image: url("../assets/images/guidelines/rules-organizer.jpg"); }
#participant { --guideline-image: url("../assets/images/guidelines/rules-participant.jpg"); }
#open { --guideline-image: url("../assets/images/guidelines/rules-open.jpg"); }
.p-guideline-section h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.p-guideline-section p, .p-guideline-section li {
  color: var(--color-text);
  line-height: 1.85;
  font-size: 0.95rem;
}
.p-guideline-section ul {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding-left: 22px;
}
.p-guideline-section ul li { list-style: disc; }

/* ---------- Latest events strip ---------- */
.p-latest {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .p-latest { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .p-latest { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Misc ---------- */
.p-bigquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.65;
  font-weight: 500;
  color: var(--color-text);
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.p-bigquote::before, .p-bigquote::after {
  display: inline-block;
  font-size: 1.5em;
  color: var(--color-primary);
  line-height: 0;
  vertical-align: -0.3em;
}
.p-bigquote::before { content: "「"; }
.p-bigquote::after  { content: "」"; }

/* ============================================================
   TESLA-STYLE HERO OVERRIDE (B2) — full-bleed image, minimal text,
   neutral scrim, purple only as CTA accent. Overrides earlier .p-hero.
   ============================================================ */
.p-hero {
  min-height: 90svh;
  min-height: 90vh; /* fallback */
  display: grid;
  align-items: end;
  background: #14121a;
  padding-block: clamp(120px, 16vw, 200px) clamp(56px, 9vw, 110px);
}
.p-hero::before { content: none; }            /* remove diagonal-line texture */
.p-hero::after {
  inset: 0;
  height: auto;
  background: linear-gradient(180deg, rgba(10,8,12,.55) 0%, rgba(10,8,12,.06) 42%, rgba(10,8,12,.76) 100%);
}
.p-hero__inner { display: block; }
.p-hero__copy { max-width: 720px; gap: 20px; }
.p-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 1.04;
  font-weight: 700;
  color: #fff;
  text-wrap: balance;
}
.p-hero__sub { max-width: 42ch; }
.p-hero__ctas { margin-top: 12px; }
.t-eyebrow--light { color: rgba(255,255,255,.92); }
.t-eyebrow--light::before { background: rgba(255,255,255,.7); }
.c-button--hero-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.c-button--hero-ghost:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ============================================================
   ヒーロー導入演出（js/hero-intro.js が制御）
   ① 真っ白 → ② テキスト中央でスムーズ・タイピング → ③ 現在位置へ移動＋背景動画フェードイン
   reduced-motion / JS無効 では is-intro が付かず通常の最終状態（グレースフル）。
   ============================================================ */
.p-hero { transition: background-color .8s ease; }
.p-hero::before, .p-hero::after { transition: opacity .8s ease; }
.p-hero__video { opacity: 1; transition: opacity 1s ease; }
.p-hero__title, .p-hero__sub, .t-eyebrow--light { transition: color .7s ease, opacity .5s ease, text-shadow .7s ease; }
.p-hero__ctas { transition: opacity .6s ease .2s; }

/* 導入中：背景白・本文は暗色・動画は透明・CTA非表示（copy の opacity/transform は JS が制御） */
.p-hero.is-intro { background-color: #fff; }
.p-hero.is-intro::before,
.p-hero.is-intro::after { opacity: 0; }                 /* 可読性スクリムを消して真っ白に */
.p-hero.is-intro .p-hero__video { opacity: 0; }
.p-hero.is-intro .p-hero__title { color: #1f1f1f; }
.p-hero.is-intro .p-hero__sub { color: #4a4452; opacity: 0; }
.p-hero.is-intro .t-eyebrow--light { color: var(--color-primary, #8b168f); }
.p-hero.is-intro .t-eyebrow--light::before { background: var(--color-accent, #f4a93a); }
.p-hero.is-intro .p-hero__ctas { opacity: 0; pointer-events: none; }
/* 白背景では暗い文字に影は不要（くすみ防止）。動画復帰時に影も戻る */
.p-hero.is-intro .p-hero__title,
.p-hero.is-intro .p-hero__sub,
.p-hero.is-intro .t-eyebrow--light { text-shadow: none; }

/* タイピング（ジッター防止：透過ダミー全文で領域確保＋実層を絶対配置で重ねる） */
.p-hero__title.is-typing { position: relative; }
.p-hero__title-ghost { opacity: 0; white-space: pre-wrap; }
.p-hero__title-actor { position: absolute; inset: 0; white-space: pre-wrap; }

/* カーソル（タイピング先端）：タイピング中は点灯しっぱなし、完了後だけ滑らかに点滅 */
.p-hero__caret {
  display: inline-block;
  width: 3px;
  height: 0.92em;
  margin-left: 3px;
  vertical-align: -0.10em;
  background: currentColor;
  border-radius: 1px;
}
.p-hero__title.is-typed .p-hero__caret { animation: hero-caret-blink 1.05s ease-in-out infinite; }
@keyframes hero-caret-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .p-hero__caret { display: none; } }

/* ---- Official logo in header (replaces ID placeholder) ---- */
.l-header__logo {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .l-header__logo { height: 34px; }
}

/* .l-section--accent は layout.css に集約済み（var(--color-surface-alt)） */


/* ---- Hero background video（基本プロパティは下部の共有ルールに統合済み） ---- */
@media (prefers-reduced-motion: reduce) {
  /* respect reduced-motion: stop the moving video, show the poster still */
  .p-hero__video { display: none; }
  .p-hero { background: #14121a url("../assets/video/hero-poster.jpg?v=18") center / cover no-repeat; }
}
/* placeholder for moved/missing dummy images (no broken icon, no gray) */
.is-img-missing { background: linear-gradient(135deg, #f3eef5, #ece6ee); }
/* 写真なしの開催ログカード：偽写真を使わず、上品なブランド・プレースホルダにする */
.c-event-card__media.is-img-missing { display: grid; place-items: center; background: linear-gradient(135deg, #efe7f2, #ddcce6); }
.c-event-card__media.is-img-missing::after { content: "Imagine Deck"; font-family: "Zen Old Mincho", serif; font-weight: 700; font-size: 1.05rem; letter-spacing: 0.08em; color: #b196bd; }

/* ============================================================
   Hero video legibility (darken映像 + 局所スクリム + 文字影) — all heroes
   ============================================================ */
.p-hero__video, .l-page-hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2; pointer-events: none;
  filter: brightness(0.6) saturate(0.9);
}
/* index hero: left + bottom gradient where the text lives */
.p-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(95deg, rgba(8,6,10,.58) 0%, rgba(8,6,10,.18) 42%, rgba(8,6,10,0) 70%);
}
.p-hero::after {
  inset: 0; height: auto; z-index: -1;
  background: linear-gradient(180deg, rgba(8,6,10,.32) 0%, rgba(8,6,10,.04) 30%, rgba(8,6,10,.80) 100%);
}
.p-hero__title, .p-hero__sub, .p-hero .t-eyebrow--light { text-shadow: 0 2px 30px rgba(0,0,0,.55); }

/* page heroes (reserve/guidelines/calendar/event-log/event-detail): same video bg + legible text */
.l-page-hero { position: relative; overflow: hidden; isolation: isolate; color: #fff; }
.l-page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,6,10,.50) 0%, rgba(8,6,10,.30) 50%, rgba(8,6,10,.72) 100%);
}
.l-page-hero__inner { position: relative; z-index: 1; }
.l-page-hero h1, .l-page-hero p, .l-page-hero .t-eyebrow { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.55); }
@media (prefers-reduced-motion: reduce) {
  .l-page-hero__video { display: none; }
  .l-page-hero { background: #14121a url("../assets/video/hero-poster.jpg?v=18") center / cover no-repeat; }
}

/* event-detail hero banner -> video */
.p-eventdetail__hero { position: relative; overflow: hidden; min-height: 300px; }
