/* event-page.css — Tixbox Event Detail (extends option5.css tokens) */

.evp { color: var(--o5-ink); }

/* ── Test-event preview banner ── */
.evp-preview-banner {
  position: sticky; top: 0; z-index: 1200;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 12px 22px;
  background: oklch(0.72 0.18 28);
  color: #fff;
  font-family: var(--o5-display);
  font-size: 13.5px; line-height: 1.35;
}
.evp-preview-banner b { font-weight: 800; }
.evp-preview-banner span { font-weight: 500; opacity: 0.95; }
.evp-preview-banner em { font-style: normal; font-weight: 800; }
.evp-preview-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #fff; flex: none;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.28);
  animation: evpPulse 1.6s ease-in-out infinite;
}
@keyframes evpPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.evp-preview-close {
  margin-left: auto;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.12);
  color: #fff; font: inherit; font-weight: 700;
  padding: 7px 16px; border-radius: 999px; cursor: pointer;
  transition: background .15s;
}
.evp-preview-close:hover { background: rgba(255,255,255,0.24); }
.evp-review-actions { margin-left: auto; display: flex; gap: 8px; flex: none; }
.evp-pill { border: 1px solid rgba(255,255,255,0.6); background: rgba(255,255,255,0.12); color: #fff; font: inherit; font-weight: 700; font-size: 13px; padding: 7px 16px; border-radius: 999px; cursor: pointer; transition: background .15s; }
.evp-pill:hover { background: rgba(255,255,255,0.24); }
.evp-pill.is-approve { background: #fff; color: oklch(0.72 0.18 28); border-color: #fff; }
.evp-pill.is-approve:hover { background: rgba(255,255,255,0.88); }
.evp-pill:disabled { opacity: 0.55; cursor: default; }
.evp-review-done { margin-left: auto; font-weight: 800; background: rgba(255,255,255,0.16); padding: 7px 16px; border-radius: 999px; }
.evp-modal-overlay { position: fixed; inset: 0; background: rgba(20,20,20,0.5); backdrop-filter: blur(3px); z-index: 1400; display: flex; align-items: center; justify-content: center; padding: 20px; }
.evp-modal { background: #fff; border-radius: 20px; padding: 26px; width: min(440px, 100%); display: flex; flex-direction: column; gap: 12px; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.4); }
.evp-modal h3 { margin: 0; font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.evp-modal p { margin: 0; font-size: 13px; color: var(--o5-ink2, #6b6b6b); line-height: 1.5; }
.evp-modal textarea { width: 100%; min-height: 110px; padding: 12px 14px; border: 1px solid #e2e2e2; border-radius: 12px; font: inherit; font-size: 14px; resize: vertical; box-sizing: border-box; }
.evp-modal textarea:focus { outline: none; border-color: #1a1a1a; }
.evp-modal-actions { display: flex; justify-content: flex-end; gap: 8px; }
.evp-pill-ghost { border: 1px solid #e2e2e2; background: #fff; color: #1a1a1a; font: inherit; font-weight: 700; font-size: 13px; padding: 9px 16px; border-radius: 999px; cursor: pointer; }
.evp-pill-ghost:hover { background: #f5f5f5; }
.evp-pill-dark { border: 1px solid #1a1a1a; background: #1a1a1a; color: #fff; font: inherit; font-weight: 700; font-size: 13px; padding: 9px 16px; border-radius: 999px; cursor: pointer; }
.evp-pill-dark:hover { background: #333; }
.evp-pill-dark:disabled { opacity: 0.4; cursor: default; }
.evp-toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); background: #1a1a1a; color: #fff; padding: 12px 22px; border-radius: 999px; font-family: var(--o5-display); font-size: 13px; font-weight: 700; z-index: 1500; box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4); }

.evp-wrap { max-width: 1280px; margin: 0 auto; padding: 0 var(--o5-edge); }

/* ── Breadcrumb / Back ── */
.evp-crumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 22px 0 14px;
  font-family: var(--o5-display);
  font-size: 12.5px; font-weight: 600;
  color: var(--o5-ink2);
  letter-spacing: 0.01em;
}
.evp-crumb a { color: var(--o5-ink2); transition: color .15s; }
.evp-crumb a:hover { color: var(--o5-ink); }
.evp-crumb .sep { color: var(--o5-ink3); }
.evp-crumb .here { color: var(--o5-ink); }

.evp-back {
  padding: 22px 0 18px;
}
.evp-back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--o5-display);
  font-size: 14px; font-weight: 700;
  color: var(--o5-ink);
  padding: 6px 4px;
  border-radius: 8px;
  transition: gap .15s ease, color .15s;
}
.evp-back-btn:hover { color: var(--o5-accent); gap: 11px; }
.evp-back-btn svg { color: currentColor; }

/* ── Title block ── */
.evp-titleblock {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  padding: 4px 0 20px;
}
.evp-titleblock-l { min-width: 0; }
.evp-title {
  font-family: var(--o5-display);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--o5-ink);
  text-wrap: balance;
}
.evp-venueline {
  font-family: var(--o5-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--o5-ink2);
  margin: 0 0 26px;
  display: inline-flex; align-items: center; gap: 8px;
}
.evp-venueline svg { color: var(--o5-accent); flex-shrink: 0; }
.evp-tags {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  margin: 0 0 14px;
}
.evp-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--o5-display);
  font-size: 12px; font-weight: 500;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.005em;
}
.evp-tag.is-cat {
  background: var(--o5-ink);
  color: var(--o5-bg);
}
.evp-tag.is-class {
  background: transparent;
  color: var(--o5-ink2);
  border: 1px solid var(--o5-line);
}
.evp-rate-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: var(--o5-display);
  font-size: 13px;
}
.evp-rate-row .stars { color: var(--o5-rate); font-size: 14px; letter-spacing: 1px; }
.evp-rate-row b { font-weight: 700; }

.evp-titleblock-r {
  display: flex; gap: 10px; flex-shrink: 0;
}
.evp-icon-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: var(--o5-surface);
  border: 1px solid var(--o5-line);
  border-radius: 999px;
  font-family: var(--o5-display);
  font-size: 13px; font-weight: 600;
  color: var(--o5-ink);
  transition: background .15s, border-color .15s;
}
.evp-icon-btn:hover { background: var(--o5-surface-2); border-color: var(--o5-ink2); }
.evp-icon-btn.is-saved { background: #fdecee; border-color: #d62133; color: #d62133; }
.evp-icon-btn.is-saved svg { fill: #d62133; }

/* ── Gallery ── */
.evp-gal-wrap { display: flex; flex-direction: column; gap: 14px; }
.evp-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
  border-radius: var(--o5-r-lg);
  overflow: hidden;
  height: 560px;
  position: relative;
}
.evp-gallery-main {
  position: relative;
  overflow: hidden;
}
.evp-gallery-side {
  display: grid;
  gap: 10px;
}
.evp-gallery-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.evp-gallery-main { cursor: pointer; }

/* ── Gallery lightbox ── */
.evp-lb-overlay { position: fixed; inset: 0; background: rgba(20,16,14,0.55); backdrop-filter: blur(3px); z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 28px; }
.evp-lb-card { position: relative; width: min(920px, 100%); max-height: calc(100vh - 56px); display: flex; flex-direction: column; background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px -16px rgba(0,0,0,0.4); animation: evpLbIn .22s cubic-bezier(.2,.8,.2,1); }
@keyframes evpLbIn { from { opacity: 0; transform: translateY(10px) scale(.985); } to { opacity: 1; transform: none; } }
.evp-lb-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, #d62133, var(--o5-accent)); z-index: 3; }
.evp-lb-head { display: flex; align-items: center; gap: 13px; padding: 20px 56px 18px 24px; border-bottom: 1px solid var(--o5-line); flex: none; }
.evp-lb-icon { width: 38px; height: 38px; border-radius: 10px; flex: none; background: linear-gradient(135deg, #d62133, var(--o5-accent)); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.evp-lb-heat { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.evp-lb-kicker { font-family: var(--o5-display); font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #d62133; }
.evp-lb-title { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--o5-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.evp-lb-close { position: absolute; top: 16px; right: 16px; z-index: 4; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--o5-line); background: #fff; color: var(--o5-ink2); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.evp-lb-close:hover { background: var(--o5-surface-2); color: var(--o5-ink); border-color: var(--o5-line); }
.evp-lb-body { flex: 1; min-height: 0; padding: 26px; background: var(--o5-surface-2); display: flex; align-items: center; justify-content: center; gap: 14px; }
.evp-lb-frame { flex: 1; min-width: 0; height: min(58vh, 520px); border-radius: var(--o5-r); overflow: hidden; position: relative; background: var(--o5-surface); }
.evp-lb-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.evp-lb-nav { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--o5-line); background: #fff; color: var(--o5-ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; flex: none; transition: border-color .15s, transform .15s; }
.evp-lb-nav:hover { border-color: var(--o5-ink2); transform: scale(1.05); }
.evp-lb-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 15px 22px; border-top: 1px solid var(--o5-line); flex: none; background: #fff; }
.evp-lb-count { font-family: var(--o5-display); font-size: 12px; color: var(--o5-ink2); font-weight: 600; }
.evp-lb-close-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 999px; border: 1px solid var(--o5-line); background: #fff; font-family: var(--o5-display); font-size: 13.5px; font-weight: 800; color: var(--o5-ink); cursor: pointer; transition: border-color .15s, transform .15s; }
.evp-lb-close-btn:hover { border-color: var(--o5-ink); transform: translateY(-1px); }
@media (max-width: 760px) {
  .evp-lb-body { flex-direction: column; padding: 16px; }
  .evp-lb-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
  .evp-lb-nav.is-prev { left: 10px; }
  .evp-lb-nav.is-next { right: 10px; }
  .evp-lb-frame { width: 100%; height: min(50vh, 380px); }
}
.evp-lb-video-play { position: absolute !important; right: auto !important; top: 50% !important; left: 50% !important; transform: translate(-50%, -50%) !important; width: 64px !important; height: 64px !important; }
.evp-lb-video-play:hover { transform: translate(-50%, -50%) scale(1.05) !important; }
.evp-gal-tabs { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.evp-gal-tabs-lbl { font-family: var(--o5-display); font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--o5-ink3); flex: none; }
.evp-gal-tabs-row { display: flex; gap: 6px; flex-wrap: wrap; }
.evp-gal-tab {
  width: 30px; height: 30px; border-radius: 999px;
  border: 1px solid var(--o5-line); background: var(--o5-surface);
  color: var(--o5-ink2); font-family: var(--o5-display); font-size: 12.5px; font-weight: 700;
  cursor: pointer; transition: background .15s, border-color .15s, color .15s;
}
.evp-gal-tab:hover { border-color: var(--o5-ink2); color: var(--o5-ink); }
.evp-gal-tab.is-on { background: var(--o5-ink); border-color: var(--o5-ink); color: #fff; }
.evp-gallery .o5-grad,
.evp-gallery .evp-grad-fill { position: absolute; inset: 0; }
.evp-gallery-cell .evp-glyph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 56px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  pointer-events: none;
}
.evp-gallery-sub {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(255,255,255,.92);
  color: var(--o5-ink);
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--o5-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.evp-gallery-sub.is-compact { left: 6px; bottom: 6px; padding: 3px 8px; font-size: 9px; }
.evp-gallery-tag {
  position: absolute; left: 22px; top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.94);
  color: var(--o5-ink);
  padding: 7px 14px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: var(--o5-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  z-index: 2;
  transition: background .15s, transform .15s;
}
.evp-gallery-tag:hover { transform: scale(1.05); }
.evp-gallery-tag-signal { position: absolute; left: 22px; top: 22px; }
.evp-gallery-tag-signal::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 1px solid #d62133;
  animation: evp-pulse 1.8s ease-out infinite;
  pointer-events: none;
}
.evp-gallery-tag-dot {
  position: relative;
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: #d62133;
}
.evp-gallery-tag .glyph { font-size: 14px; line-height: 1; }
.evp-gallery-more {
  position: absolute; right: 22px; bottom: 22px;
  background: rgba(255,255,255,.94);
  color: var(--o5-ink);
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--o5-display);
  font-size: 12.5px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(8px);
  z-index: 2;
  border: 0;
  cursor: pointer;
}

/* Poster-video presentation for the hero image */
.evp-poster-video { background: #000; }
.evp-poster-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.evp-poster-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.4) 100%);
}
.evp-poster-scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,.025) 2px 3px);
  animation: evp-scan 4s linear infinite;
}
@keyframes evp-scan {
  0%   { background-position: 0 0; }
  100% { background-position: 0 12px; }
}
.evp-poster-title {
  position: absolute;
  left: 28px; right: 28px; top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
  color: rgba(255,255,255,.96);
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.evp-poster-eyebrow {
  font-family: var(--o5-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.4em;
  opacity: 0.85;
  margin-bottom: 14px;
}
.evp-poster-name {
  font-family: var(--o5-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 18px;
  text-wrap: balance;
}
.evp-poster-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
  font-family: var(--o5-display);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.25);
}
.evp-poster-play {
  position: absolute;
  right: 22px; top: 22px;
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: var(--o5-ink);
  border: 0;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: background .15s, transform .15s;
}
.evp-poster-play:hover { transform: scale(1.05); }
.evp-poster-play::before {
  content: '';
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  animation: evp-pulse 1.8s ease-out infinite;
}
@keyframes evp-pulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}

/* ── Main layout ── */
.evp-main {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
  padding: 56px 0 40px;
}
.evp-main-l { min-width: 0; }
.evp-main-r { position: sticky; top: 96px; }

/* ── Quick facts — 6 pill variants in a switcher ── */
.evp-facts-wrap { margin-bottom: 48px; }
.evp-facts-switch {
  display: inline-flex; flex-wrap: wrap; gap: 0;
  margin-bottom: 16px;
  padding: 4px;
  background: var(--o5-surface);
  border: 1px solid var(--o5-line);
  border-radius: 999px;
}
.evp-facts-switch-btn {
  background: transparent;
  border: 0;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--o5-display);
  font-size: 12px; font-weight: 600;
  color: var(--o5-ink2);
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.evp-facts-switch-btn:hover { color: var(--o5-ink); }
.evp-facts-switch-btn.is-on {
  background: var(--o5-ink);
  color: var(--o5-bg);
}

.evp-facts { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* Base pill structure */
.evp-fact-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--o5-surface);
  border: 1px solid var(--o5-line);
  border-radius: 999px;
}
.evp-fact-pill-ico { display: inline-flex; flex-shrink: 0; transition: transform .2s ease, color .2s ease; }

/* Hover affordance — applies to all pill variants */
.evp-fact-pill { transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease; }
.evp-fact-pill:hover {
  transform: translateY(-2px);
  border-color: var(--o5-ink);
  box-shadow: 0 12px 24px -14px rgba(0,0,0,0.22);
}
.evp-fact-pill:hover .evp-fact-pill-ico { transform: scale(1.1); }
.evp-facts.pill-filled .evp-fact-pill:hover { background: color-mix(in oklab, #d62133 88%, #000); border-color: color-mix(in oklab, #d62133 88%, #000); box-shadow: 0 14px 28px -14px rgba(214,33,51,0.5); }
.evp-facts.pill-dark .evp-fact-pill:hover { background: #000; border-color: #000; box-shadow: 0 14px 28px -14px rgba(0,0,0,0.5); }
.evp-facts.pill-soft .evp-fact-pill:hover { background: color-mix(in oklab, var(--o5-accent-soft) 80%, #000); }
.evp-facts.pill-disc .evp-fact-pill:hover { transform: translateY(-2px); box-shadow: none; }
.evp-facts.pill-disc .evp-fact-pill:hover .evp-fact-pill-disc { background: var(--o5-ink); color: #fff; transform: scale(1.06); }
.evp-fact-pill-disc { transition: background .2s ease, color .2s ease, transform .2s ease; }
@media (prefers-reduced-motion: reduce) {
  .evp-fact-pill, .evp-fact-pill-ico, .evp-fact-pill-disc { transition: none; }
  .evp-fact-pill:hover, .evp-fact-pill:hover .evp-fact-pill-ico { transform: none; }
}
.evp-fact-pill-lbl {
  font-family: var(--o5-display);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--o5-ink3);
}
.evp-fact-pill-val {
  font-family: var(--o5-display);
  font-size: 14px; font-weight: 700;
  color: var(--o5-ink);
  letter-spacing: -0.01em;
}

/* 01 — current : accent icon */
.evp-facts.pill-current .evp-fact-pill-ico { color: var(--o5-accent); }

/* 02 — outline mono */
.evp-facts.pill-outline .evp-fact-pill {
  background: var(--o5-surface);
  border-color: var(--o5-line);
  padding: 10px 16px;
  gap: 8px;
}
.evp-facts.pill-outline .evp-fact-pill-ico { color: var(--o5-ink); }
.evp-facts.pill-outline .evp-fact-pill-val { font-size: 13.5px; font-weight: 600; }

/* 03 — accent filled */
.evp-facts.pill-filled .evp-fact-pill {
  background: #d62133;
  border-color: #d62133;
  padding: 11px 18px;
  gap: 8px;
}
.evp-facts.pill-filled .evp-fact-pill-ico { color: rgba(255,255,255,0.85); }
.evp-facts.pill-filled .evp-fact-pill-val { color: #fff; font-size: 13.5px; }

/* 04 — soft pastel */
.evp-facts.pill-soft .evp-fact-pill {
  background: var(--o5-accent-soft);
  border-color: transparent;
  padding: 11px 18px;
}
.evp-facts.pill-soft .evp-fact-pill-ico { color: var(--o5-accent); }
.evp-facts.pill-soft .evp-fact-pill-val { font-size: 13.5px; }

/* 05 — dark inverse */
.evp-facts.pill-dark .evp-fact-pill {
  background: var(--o5-ink);
  border-color: var(--o5-ink);
  padding: 11px 18px;
  gap: 10px;
}
.evp-facts.pill-dark .evp-fact-pill-ico { color: var(--o5-accent); }
.evp-facts.pill-dark .evp-fact-pill-lbl { color: rgba(255,255,255,0.55); }
.evp-facts.pill-dark .evp-fact-pill-val { color: #fff; font-size: 13.5px; }

/* 06 — icon disc, borderless */
.evp-facts.pill-disc { gap: 28px; }
.evp-facts.pill-disc .evp-fact-pill {
  background: transparent;
  border: 0;
  padding: 0;
  gap: 12px;
}
.evp-fact-pill-disc {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--o5-accent-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--o5-accent);
  flex-shrink: 0;
}
.evp-fact-pill-text { display: flex; flex-direction: column; gap: 1px; }
.evp-facts.pill-disc .evp-fact-pill-val { font-size: 14.5px; line-height: 1.2; }

/* ── Sections ── */
.evp-sec {
  padding: 30px 0;
  border-top: 1px solid var(--o5-line);
}
.evp-sec:first-of-type { border-top: 0; padding-top: 0; }
.evp-sec h2 {
  font-family: var(--o5-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--o5-ink);
}
.evp-sec > p {
  font-family: var(--o5-display);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--o5-ink2);
  margin: 0 0 18px;
}
.evp-sec > p:last-child { margin-bottom: 0; }

/* ── Dates & show times list ── */
.evp-shows {
  border: 1px solid var(--o5-line);
  border-radius: var(--o5-r);
  overflow: hidden;
  background: var(--o5-surface);
}
.evp-shows-head, .evp-shows-row {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1.2fr;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
}
.evp-shows-head {
  background: var(--o5-surface-2);
  border-bottom: 1px solid var(--o5-line);
  font-family: var(--o5-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--o5-ink2);
}
.evp-shows-row {
  border-bottom: 1px solid var(--o5-line);
  font-family: var(--o5-display);
  font-size: 14.5px;
  color: var(--o5-ink);
}
.evp-shows-row:last-child { border-bottom: 0; }
.evp-shows-row.is-sold { color: var(--o5-ink3); }
.evp-shows-date b { font-size: 18px; font-weight: 800; letter-spacing: -0.015em; margin-right: 4px; color: var(--o5-ink); }
.evp-shows-row.is-sold .evp-shows-date b { color: var(--o5-ink3); }
.evp-shows-dow { font-weight: 600; color: var(--o5-ink2); }
.evp-shows-time { font-weight: 700; font-variant-numeric: tabular-nums; }
.evp-shows-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
}
.evp-shows-status .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.evp-shows-status.is-available { color: #0f7a3a; }
.evp-shows-status.is-few       { color: #c2761b; }
.evp-shows-status.is-sold      { color: #b91c1c; }
.evp-shows-btn {
  padding: 9px 18px;
  background: var(--o5-ink);
  color: var(--o5-bg);
  border: 0;
  border-radius: 999px;
  font-family: var(--o5-display);
  font-size: 12.5px; font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.evp-shows-btn:hover:not(:disabled) { background: var(--o5-accent); }
.evp-shows-btn:disabled { background: var(--o5-line); color: var(--o5-ink3); cursor: not-allowed; }

/* ── Products on sale — category tabs ── */
.evp-ptabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 18px;
}
.evp-ptab {
  font-family: var(--o5-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--o5-ink2);
  background: var(--o5-surface);
  border: 1px solid var(--o5-line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.evp-ptab:hover {
  color: var(--o5-ink);
  border-color: var(--o5-ink2);
  transform: translateY(-1px);
}
.evp-ptab.is-on {
  background: #d62133;
  border-color: #d62133;
  color: #fff;
}
.evp-ptab.is-on:hover { transform: none; }
.o5[data-theme="dark"] .evp-ptab { background: #000; }
.o5[data-theme="dark"] .evp-ptab.is-on { background: #d62133; color: #fff; border-color: #d62133; }
@media (prefers-reduced-motion: reduce) { .evp-ptab { transition: none; } .evp-ptab:hover { transform: none; } }

/* ── Ticket tiers — horizontal expandable rows ── */
.evp-tier-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--o5-line);
  border-radius: var(--o5-r);
  overflow: hidden;
  background: var(--o5-surface);
}
.evp-tier-row {
  border-bottom: 1px solid var(--o5-line);
  transition: background .15s;
}
.evp-tier-row:last-child { border-bottom: 0; }
.evp-tier-row.is-open { background: var(--o5-surface-2); }
.evp-tier-row.is-pre.is-open { background: var(--o5-accent-soft); }

.evp-tier-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--o5-display);
  color: var(--o5-ink);
}
.evp-tier-head:hover { background: var(--o5-surface-2); }
.evp-tier-row.is-open .evp-tier-head:hover { background: transparent; }

.evp-tier-l { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; min-width: 0; }
.evp-tier-r { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }

.evp-tier-name {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--o5-ink);
}
.evp-tier-tag {
  display: inline-block;
  background: var(--o5-accent);
  color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.evp-tier-row.is-vip .evp-tier-tag { background: var(--o5-ink); }
.evp-tier-desc {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--o5-ink2);
  line-height: 1.4;
  flex-basis: 100%;
  margin-top: 2px;
}
.evp-tier-price {
  display: inline-flex; align-items: baseline; gap: 5px;
  font-family: var(--o5-display);
  color: var(--o5-ink);
}
.evp-tier-price .ccy { font-size: 12px; font-weight: 700; color: var(--o5-ink2); }
.evp-tier-price .num { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.evp-tier-price .per { font-size: 12px; font-weight: 600; color: var(--o5-ink2); margin-left: 2px; }

.evp-tier-caret {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--o5-bg);
  border: 1px solid var(--o5-line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--o5-ink);
  transition: transform .2s ease, background .15s;
  flex-shrink: 0;
}
.evp-tier-row.is-open .evp-tier-caret {
  transform: rotate(180deg);
  background: var(--o5-ink);
  color: var(--o5-bg);
  border-color: var(--o5-ink);
}

.evp-tier-panel {
  overflow: hidden;
  background: transparent;
}
.evp-tier-panel[hidden] { display: none; }
.evp-tier-panel-inner {
  padding: 0 28px 24px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.evp-tier-panel-label {
  font-family: var(--o5-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--o5-ink3);
}
.evp-tier-incl {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}
.evp-tier-incl li {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--o5-display);
  font-size: 14px; color: var(--o5-ink); line-height: 1.4;
}
.evp-tier-incl li .mark {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: #ddefe2; color: #0f7a3a;
}

/* ── Floor plan ── */
.evp-fp-wrap { display: flex; flex-direction: column; gap: 14px; }
.evp-fp-legend {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--o5-display);
  font-size: 12.5px; font-weight: 600;
  color: var(--o5-ink2);
}
.evp-fp-legend > div { display: inline-flex; align-items: center; gap: 6px; }
.evp-fp-legend .sw { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
image-slot { background: var(--o5-surface-2); }

/* ── Amenities — single card, icon rows in 3 columns ── */
.evp-amen-card {
  border: 1px solid var(--o5-line);
  border-radius: var(--o5-r);
  background: var(--o5-surface);
  padding: 36px 36px 28px;
  display: flex; flex-direction: column; gap: 0;
}
.evp-amen-rule {
  display: block;
  width: 40px; height: 2px;
  background: var(--o5-line);
  border-radius: 2px;
}
.evp-amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 36px;
  padding: 28px 0;
}
.evp-amen-row {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--o5-display);
  font-size: 14.5px;
  color: var(--o5-ink);
}
.evp-amen-ico {
  width: 20px; height: 20px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--o5-ink);
}
.evp-amen-ico svg { width: 18px; height: 18px; }
.evp-amen-emoji {
  width: 22px; flex-shrink: 0;
  font-size: 17px; line-height: 1;
  text-align: center;
}
.evp-amen-text { font-weight: 500; }
.evp-amen-text b { font-weight: 700; color: var(--o5-ink); }

.evp-amen-more {
  align-self: flex-start;
  margin-top: 22px;
  padding: 11px 22px;
  background: var(--o5-surface);
  border: 1px solid var(--o5-line);
  border-radius: 999px;
  font-family: var(--o5-display);
  font-size: 13.5px; font-weight: 600;
  color: var(--o5-ink);
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.evp-amen-more:hover { background: var(--o5-surface-2); border-color: var(--o5-ink2); }

/* ── Schedule timeline (Run of Show) ── */
.evp-timeline { list-style: none; padding: 0; margin: 6px 0 0; position: relative; }
.evp-timeline::before {
  content: ''; position: absolute; left: 11px; top: 6px; bottom: 6px;
  width: 2px; background: var(--o5-line);
}
.evp-timeline li {
  position: relative;
  padding: 0 0 20px 36px;
  font-family: var(--o5-display);
}
.evp-timeline li:last-child { padding-bottom: 0; }
.evp-timeline-dot {
  position: absolute; left: 6px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--o5-bg);
  border: 2px solid #d62133;
}
.evp-timeline-time {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #d62133;
  margin-bottom: 3px;
}
.evp-timeline-title { font-size: 15px; font-weight: 700; color: var(--o5-ink); margin-bottom: 2px; }
.evp-timeline-body { font-size: 13.5px; color: var(--o5-ink2); line-height: 1.55; }

.ttk-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.ttk-chip { display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px 9px 9px; border-radius: 999px; background: var(--o5-accent-soft); font-family: var(--o5-display); font-size: 13.5px; font-weight: 700; color: var(--o5-ink); }
.ttk-chip .mk { width: 24px; height: 24px; border-radius: 50%; background: var(--o5-accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── Location ── */
.evp-loc {
  border: 1px solid var(--o5-line);
  border-radius: var(--o5-r);
  overflow: hidden;
  background: var(--o5-surface);
}
.evp-loc-map {
  position: relative;
  height: 280px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,111,60,.08), transparent 40%),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(0,0,0,.04) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(0,0,0,.04) 39px 40px),
    var(--o5-surface-2);
}
.evp-loc-map::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(75deg, transparent 30%, rgba(0,0,0,.08) 30.5%, rgba(0,0,0,.08) 32%, transparent 32.5%),
    linear-gradient(165deg, transparent 55%, rgba(0,0,0,.06) 55.5%, rgba(0,0,0,.06) 57%, transparent 57.5%),
    linear-gradient(15deg, transparent 70%, rgba(0,0,0,.05) 70.5%, rgba(0,0,0,.05) 72%, transparent 72.5%);
}
.evp-loc-pin {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--o5-accent);
  color: #fff;
  border-radius: 50% 50% 50% 0;
  transform-origin: center;
  rotate: -45deg;
  box-shadow: 0 8px 22px -6px rgba(255,111,60,.6);
}
.evp-loc-pin svg { rotate: 45deg; }
.evp-loc-body { padding: 22px; display: flex; gap: 24px; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; }
.evp-loc-body h3 { font-family: var(--o5-display); font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.evp-loc-body p { font-family: var(--o5-display); font-size: 13.5px; color: var(--o5-ink2); margin: 0; line-height: 1.5; }
.evp-loc-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── Host information ── */
.evp-host {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 28px;
  background: var(--o5-surface);
  border: 1px solid var(--o5-line);
  border-radius: var(--o5-r);
  align-items: flex-start;
}
.evp-host-logo {
  position: relative;
  width: 120px; height: 120px;
  border-radius: 22px;
  overflow: hidden;
}
.evp-host-logo .o5-grad { position: absolute; inset: 0; }
.evp-host-logo .glyph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 56px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.evp-host-top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.evp-host-top h3 {
  font-family: var(--o5-display);
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--o5-ink);
}
.evp-host-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--o5-display);
  font-size: 11.5px; font-weight: 700;
  padding: 4px 9px;
  background: #ddefe2;
  color: #0f7a3a;
  border-radius: 999px;
}
.evp-host-meta {
  font-family: var(--o5-display);
  font-size: 13.5px; font-weight: 500;
  color: var(--o5-ink2);
  margin: 0 0 16px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.evp-host-meta .sep { color: var(--o5-ink3); }
.evp-host-rate { display: inline-flex; align-items: center; gap: 4px; color: var(--o5-ink); font-weight: 600; }
.evp-host-rate .star { color: var(--o5-rate); }
.evp-host-rate b { font-weight: 700; }
.evp-host-rate .muted { color: var(--o5-ink2); font-weight: 500; }
.evp-host-desc { font-family: var(--o5-display); font-size: 14.5px; color: var(--o5-ink2); line-height: 1.6; margin: 0 0 20px; max-width: 640px; }
.evp-host-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Event credits ── */
.evp-credits {
  border: 1px solid var(--o5-line);
  border-radius: var(--o5-r);
  background: var(--o5-surface);
  padding: 24px;
  display: flex; flex-direction: column; gap: 22px;
}
.evp-credits-orgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--o5-line);
}
.evp-credit-org { display: flex; gap: 14px; align-items: center; min-width: 0; }
.evp-credit-mark {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--o5-surface-2);
  border: 1px solid var(--o5-line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 22px;
  color: var(--o5-ink);
  flex-shrink: 0;
}
.evp-credit-org > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.evp-credit-role { font-family: var(--o5-display); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--o5-ink3); }
.evp-credit-org b { font-family: var(--o5-display); font-size: 14.5px; font-weight: 700; color: var(--o5-ink); }

.evp-credits-spon { display: flex; flex-direction: column; gap: 12px; }
.evp-credits-spon-label {
  font-family: var(--o5-display);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--o5-ink3);
}
.evp-credits-spon-row { display: flex; gap: 12px; flex-wrap: wrap; }
.evp-sponsor {
  width: 110px; height: 56px;
  border-radius: 12px;
  background: var(--o5-surface-2);
  border: 1px solid var(--o5-line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 16px; font-weight: 700;
  color: var(--o5-ink);
  letter-spacing: 0.04em;
}

/* ── Terms ── */
.evp-terms {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.evp-term {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px; align-items: center;
  padding: 14px 18px 14px 14px;
  background: var(--o5-surface);
  border: 1px solid var(--o5-line);
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease, border-radius .25s ease, box-shadow .2s ease;
  cursor: default;
}
.evp-term:hover,
.evp-term:focus-within {
  background: var(--o5-surface-2);
  border-color: var(--o5-ink2);
  border-radius: 20px;
  box-shadow: 0 14px 28px -18px rgba(0,0,0,0.18);
}
.evp-term::after {
  content: '';
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--o5-surface-2);
  color: var(--o5-ink2);
  display: inline-flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'><path d='m6 9 6 6 6-6' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
  transition: transform .25s ease, background-color .2s ease;
}
.evp-term:hover::after,
.evp-term:focus-within::after { transform: rotate(180deg); }
.evp-term-ico {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fdecee;
  color: #d62133;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.evp-term:hover .evp-term-ico { transform: scale(1.08); }
.evp-term > div { min-width: 0; font-family: var(--o5-display); }
.evp-term b {
  display: block;
  font-size: 15px; font-weight: 800;
  letter-spacing: -0.012em;
  color: var(--o5-ink);
  line-height: 1.25;
}
.evp-term p {
  font-size: 13.5px;
  color: var(--o5-ink2);
  line-height: 1.55;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .25s ease, opacity .2s ease, margin .2s ease;
}
.evp-term:hover p,
.evp-term:focus-within p {
  max-height: 200px;
  opacity: 1;
  margin-top: 6px;
}

/* ── FAQ ── */
.evp-faq { display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
.evp-faq-row { border-bottom: 1px solid var(--o5-line); }
.evp-faq-row:first-child { border-top: 1px solid var(--o5-line); }
.evp-faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 4px;
  background: transparent;
  border: 0;
  font-family: var(--o5-display);
  font-size: 15.5px; font-weight: 700;
  color: var(--o5-ink);
  text-align: left;
  cursor: pointer;
}
.evp-faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--o5-surface-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease, background .15s;
}
.evp-faq-row.is-open .evp-faq-icon { transform: rotate(45deg); background: var(--o5-ink); color: var(--o5-bg); }
.evp-faq-a {
  font-family: var(--o5-display);
  font-size: 14.5px; line-height: 1.6; color: var(--o5-ink2);
  padding: 0 4px 18px;
  max-width: 760px;
}

/* ── Booking widget — Hero price band ── */
.evp-widget {
  background: var(--o5-surface);
  border: 1px solid var(--o5-line);
  border-radius: var(--o5-r-lg);
  overflow: hidden;
  padding: 0;
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.15);
}
.evp-widget-from {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  background: #d62133;
  color: #fff;
  padding: 24px 28px;
  font-family: var(--o5-display);
}
.evp-widget-from-l { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.evp-widget-from .pref {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.evp-widget-from .amt {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--o5-display);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.evp-widget-from .ccy { font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.85); }
.evp-widget-from .price { font-size: 32px; font-weight: 800; line-height: 1; color: #fff; }
.evp-widget-from-r {
  flex-shrink: 0;
  padding: 6px 12px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  font-family: var(--o5-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.evp-widget-body { padding: 26px 26px 26px; }

.evp-widget-group { margin-bottom: 28px; }
.evp-widget-group:last-of-type { margin-bottom: 24px; }
.evp-widget-label {
  font-family: var(--o5-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--o5-ink3);
  margin: 0 0 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.evp-widget-label .hint { color: var(--o5-ink2); text-transform: none; font-weight: 600; font-size: 11.5px; letter-spacing: 0; }

/* Date strip */
.evp-dates { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; margin: 0 -4px; padding: 0 4px 4px; }
.evp-dates::-webkit-scrollbar { display: none; }
.evp-date {
  flex-shrink: 0;
  min-width: 64px;
  padding: 9px 10px;
  background: var(--o5-surface);
  border: 1px solid var(--o5-line);
  border-radius: 12px;
  font-family: var(--o5-display);
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.evp-date .dow { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--o5-ink2); }
.evp-date .dom { font-size: 18px; font-weight: 800; color: var(--o5-ink); line-height: 1.2; margin: 2px 0 1px; letter-spacing: -0.02em; }
.evp-date .mon { font-size: 10.5px; font-weight: 600; color: var(--o5-ink2); text-transform: uppercase; letter-spacing: 0.05em; }
.evp-date:hover { border-color: var(--o5-ink2); }
.evp-date.is-on { background: #d62133; border-color: #d62133; }
.evp-date.is-on .dow, .evp-date.is-on .dom, .evp-date.is-on .mon { color: #fff; }
.evp-date.is-disabled { opacity: 0.4; pointer-events: none; }

/* Time slots */
.evp-times { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.evp-time {
  padding: 10px 4px;
  border: 1px solid var(--o5-line);
  background: var(--o5-surface);
  border-radius: 10px;
  font-family: var(--o5-display);
  font-size: 12.5px; font-weight: 700;
  color: var(--o5-ink);
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.evp-time:hover { border-color: var(--o5-ink2); }
.evp-time.is-on { background: #d62133; color: #fff; border-color: #d62133; }
.evp-time.is-out { opacity: 0.4; pointer-events: none; text-decoration: line-through; }

/* Quantity */
.evp-qty {
  display: inline-flex; align-items: center; gap: 0;
  background: var(--o5-bg);
  border: 1px solid var(--o5-line);
  border-radius: 999px;
  padding: 4px;
}
.evp-qty.is-lg button { width: 40px; height: 40px; font-size: 18px; }
.evp-qty.is-lg .val { min-width: 44px; font-size: 17px; }
.evp-qty button {
  width: 28px; height: 28px;
  border: 0; background: transparent;
  border-radius: 50%;
  font-family: var(--o5-display);
  font-size: 16px; font-weight: 700;
  color: var(--o5-ink);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.evp-qty button:hover:not(:disabled) { background: var(--o5-surface-2); }
.evp-qty button:disabled { color: var(--o5-ink3); cursor: not-allowed; }
.evp-qty .val { min-width: 26px; text-align: center; font-family: var(--o5-display); font-size: 14px; font-weight: 700; color: var(--o5-ink); }

/* Seat preference — price-led comparison */
.evp-pref { display: flex; flex-direction: column; gap: 8px; }
.evp-pref-opt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 14px 16px;
  background: var(--o5-surface);
  border: 1px solid var(--o5-line);
  border-radius: 14px;
  font-family: var(--o5-display);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.evp-pref-opt:hover { border-color: var(--o5-ink2); }
.evp-pref-opt.is-on {
  border-color: var(--o5-ink);
  border-width: 1.5px;
  padding: 13.5px 15.5px;
}
.evp-pref-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--o5-line);
  background: var(--o5-surface);
  flex-shrink: 0;
  position: relative;
  transition: border-color .15s;
}
.evp-pref-opt.is-on .evp-pref-radio {
  border-color: var(--o5-ink);
}
.evp-pref-opt.is-on .evp-pref-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--o5-ink);
}
.evp-pref-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.evp-pref-head { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.evp-pref-body b { font-size: 13.5px; font-weight: 700; color: var(--o5-ink); letter-spacing: -0.005em; }
.evp-pref-body > span:not(.evp-pref-head):not(.evp-pref-tag) { font-size: 12px; color: var(--o5-ink2); line-height: 1.4; }
.evp-pref-tag {
  display: inline-flex; align-items: center;
  font-family: var(--o5-display);
  font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 999px;
  background: #1f8a5b;
  color: #fff;
  line-height: 1.2;
}
.evp-pref-price {
  text-align: right;
  display: flex; flex-direction: column; gap: 1px;
  flex-shrink: 0;
}
.evp-pref-amt {
  font-family: var(--o5-display);
  font-size: 14.5px; font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--o5-ink);
}
.evp-pref-amt.is-free { color: #1f8a5b; }
.evp-pref-per {
  font-family: var(--o5-display);
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--o5-ink3);
  text-transform: uppercase;
}

/* Widget total + CTA */
.evp-widget-total {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 16px 0 14px;
  border-top: 1px solid var(--o5-line);
  margin-top: 18px;
  font-family: var(--o5-display);
}
.evp-widget-total .lbl { font-size: 12.5px; font-weight: 700; color: var(--o5-ink2); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.evp-widget-fees { font-family: var(--o5-display); font-size: 11.5px; color: var(--o5-ink3); margin: 0; }
.evp-widget-total .val { font-size: 26px; font-weight: 800; color: var(--o5-ink); letter-spacing: -0.02em; text-align: right; }
.evp-widget-total .val .ccy { font-size: 12.5px; font-weight: 700; margin-right: 4px; color: var(--o5-ink2); }

.evp-widget-cta { display: flex; flex-direction: column; gap: 10px; }
.evp-btn-proceed {
  width: 100%;
  background: #d62133;
  color: #fff;
  border: 0;
  padding: 16px 22px;
  border-radius: 999px;
  font-family: var(--o5-display);
  font-size: 14.5px; font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 14px 28px -14px rgba(214,33,51,0.6);
}
.evp-btn-proceed:hover { background: #b91c2c; box-shadow: 0 18px 32px -12px rgba(214,33,51,0.7); }
.evp-btn-proceed:active { transform: scale(0.99); }

/* ── You may also like ── */
.evp-also {
  padding: 56px 0 30px;
  border-top: 1px solid var(--o5-line);
}
.evp-also h2 {
  font-family: var(--o5-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.evp-also .sub {
  font-family: var(--o5-display);
  color: var(--o5-ink2);
  font-size: 14.5px;
  margin: 0 0 24px;
}

/* Dark theme tweaks */
.o5[data-theme="dark"] .evp-facts,
.o5[data-theme="dark"] .evp-loc,
.o5[data-theme="dark"] .evp-widget,
.o5[data-theme="dark"] .evp-shows,
.o5[data-theme="dark"] .evp-tier,
.o5[data-theme="dark"] .evp-amen,
.o5[data-theme="dark"] .evp-term,
.o5[data-theme="dark"] .evp-host,
.o5[data-theme="dark"] .evp-credits,
.o5[data-theme="dark"] .evp-date,
.o5[data-theme="dark"] .evp-time,
.o5[data-theme="dark"] .evp-pref-opt,
.o5[data-theme="dark"] .evp-icon-btn { background: #000; }
.o5[data-theme="dark"] .evp-loc-map,
.o5[data-theme="dark"] .evp-tag.is-class,
.o5[data-theme="dark"] .evp-sponsor,
.o5[data-theme="dark"] .evp-credit-mark,
.o5[data-theme="dark"] .evp-shows-head { background: #0a0a0a; }
.o5[data-theme="dark"] .evp-qty,
.o5[data-theme="dark"] .evp-faq-icon,
.o5[data-theme="dark"] .evp-fact-ico { background: #0a0a0a; }
.o5[data-theme="dark"] .evp-tier.is-pre { background: linear-gradient(180deg, #2a1a14 0%, #000 60%); }
.o5[data-theme="dark"] .evp-widget-from { background: #d62133; }
.o5[data-theme="dark"] .evp-widget-from .price,
.o5[data-theme="dark"] .evp-widget-from .ccy,
.o5[data-theme="dark"] .evp-widget-from-r { color: #fff; }

/* Responsive */
@media (max-width: 1100px) {
  .evp-main { grid-template-columns: 1fr; gap: 32px; }
  .evp-main-r { position: static; }
  .evp-widget { max-width: 480px; }
  .evp-facts { grid-template-columns: repeat(2, 1fr); }
  .evp-facts .evp-fact:nth-child(2) { border-right: 0; }
  .evp-facts .evp-fact:not(:nth-last-child(-n+1)) { border-bottom: 1px solid var(--o5-line); }
  .evp-tier-list { border-radius: var(--o5-r); }
  .evp-tier-head { padding: 18px 18px; gap: 14px; }
  .evp-tier-panel-inner { padding: 0 18px 18px; }
  .evp-tier-incl { grid-template-columns: 1fr; }
  .evp-amen-grid { grid-template-columns: repeat(2, 1fr); }
  .evp-terms { grid-template-columns: 1fr; }
  .evp-term { grid-template-columns: 38px 1fr auto; padding: 12px 14px 12px 12px; }
  .evp-credits-orgs { grid-template-columns: 1fr; }
  .evp-host { grid-template-columns: 100px 1fr; gap: 20px; padding: 18px; }
  .evp-host-logo { width: 100px; height: 100px; }
  .evp-shows-head, .evp-shows-row { grid-template-columns: 1fr 1fr 0.8fr 1fr; padding: 12px 16px; gap: 10px; }
}
@media (max-width: 760px) {
  .evp-gallery { grid-template-columns: 1fr; height: auto; }
  .evp-gallery-main { height: 360px; border-radius: var(--o5-r); }
  .evp-gallery-side { height: auto; min-height: 200px; }
  .evp-gallery-cell { border-radius: 14px; min-height: 90px; }
  .evp-titleblock { grid-template-columns: 1fr; }
  .evp-facts { grid-template-columns: 1fr; }
  .evp-fact { border-right: 0; border-bottom: 1px solid var(--o5-line); }
  .evp-fact:last-child { border-bottom: 0; }
  .evp-amen-grid { grid-template-columns: 1fr; }
  .evp-terms { grid-template-columns: 1fr; }
  .evp-amen-card { padding: 24px; }
  .evp-host { grid-template-columns: 1fr; }
  .evp-host-logo { width: 80px; height: 80px; }
  .evp-shows-head { display: none; }
  .evp-shows-row { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; row-gap: 6px; }
  .evp-shows-row > * { grid-column: span 1; }
  .evp-host-stats { gap: 18px; flex-wrap: wrap; }
}
.evp-tier-group-label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--o5-ink2, #6b6b6b); margin: 20px 0 10px; }
.evp-tier-group-label:first-child { margin-top: 2px; }

/* ═══════════════ Old Event Page — oep-* layout/card/booking styles (appended) ═══════════════ */
.evp-back-btn{background:#fff;border:1px solid var(--o5-line);border-radius:999px;padding:10px 18px}
.sid-overlay{position:fixed;inset:0;background:rgba(20,20,20,0.5);backdrop-filter:blur(2px);opacity:0;pointer-events:none;transition:opacity .3s ease;z-index:200}
.sid-overlay.is-open{opacity:1;pointer-events:auto}
.sid-drawer{position:fixed;top:0;right:0;bottom:0;width:min(460px,92vw);background:var(--o5-surface);box-shadow:-30px 0 70px -24px rgba(0,0,0,0.35);transform:translateX(100%);transition:transform .38s cubic-bezier(.22,.61,.36,1);z-index:201;display:flex;flex-direction:column}
.sid-drawer.is-open{transform:translateX(0)}
.sid-scroll{overflow-y:auto;flex:1}
.sid-close{position:absolute;top:20px;right:20px;width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,0.35);background:rgba(255,255,255,0.16);color:#fff;display:inline-flex;align-items:center;justify-content:center;z-index:5;transition:background .15s;cursor:pointer}
.sid-close:hover{background:rgba(255,255,255,0.3)}
.sid-hero{background:#d62133;color:#fff;padding:56px 36px 30px;position:relative;overflow:hidden}
.sid-hero::before{content:'';position:absolute;width:260px;height:260px;right:-110px;top:-130px;background:radial-gradient(circle,rgba(255,255,255,0.22),transparent 70%);border-radius:50%;pointer-events:none}
.sid-hero>*:not(.sid-close){position:relative;z-index:1}
.sid-eyebrow{font-size:10px;font-weight:800;letter-spacing:0.2em;text-transform:uppercase;color:rgba(255,255,255,0.9);display:block}
.sid-hero h2{font-family:var(--o5-display);font-size:26px;font-weight:800;letter-spacing:-0.02em;line-height:1.1;margin:12px 0 10px;color:#fff}
.sid-hero p{font-size:13.5px;color:rgba(255,255,255,0.88);line-height:1.55;margin:0}
.sid-perks{list-style:none;margin:16px 0 0;padding:0;display:flex;flex-direction:column;gap:9px}
.sid-perks li{display:flex;align-items:flex-start;gap:9px;font-size:13px;color:#fff}
.sid-perks li svg{flex:none;margin-top:2px}
.sid-form{padding:28px 36px 36px;background:var(--o5-surface)}
.sid-intro{font-size:13.5px;color:var(--o5-ink2);line-height:1.5;margin:0 0 14px}
.sid-sso-list{display:flex;gap:8px}
.sid-sso{display:flex;align-items:center;justify-content:center;gap:6px;flex:1;min-width:0;padding:11px 14px;border:1px solid var(--o5-line);border-radius:999px;background:var(--o5-surface);font-size:13px;font-weight:700;color:var(--o5-ink);cursor:pointer;text-decoration:none;transition:border-color .15s}
.sid-sso.is-compact{flex:0 0 auto;width:46px;padding:0;gap:0;aspect-ratio:1/1}
.sid-sso.is-compact .lbl{display:none}
.sid-sso:hover{border-color:var(--o5-ink)}
.sid-sso .ico{width:18px;height:18px;display:inline-flex;align-items:center;justify-content:center;flex:none}
.sid-lg-google{width:16px;height:16px;background:conic-gradient(from -45deg,#ea4335 0deg 90deg,#fbbc04 90deg 180deg,#34a853 180deg 270deg,#4285f4 270deg 360deg);border-radius:50%;mask:radial-gradient(circle,transparent 26%,#000 27%) center/contain no-repeat;-webkit-mask:radial-gradient(circle,transparent 26%,#000 27%) center/contain no-repeat}
.sid-lg-apple svg{width:14px;height:16px}
.sid-or{display:block;font-size:13px;color:var(--o5-ink2);line-height:1.5;margin:20px 0 16px}
.sid-fields{display:flex;flex-direction:column;gap:12px}
.sid-field{display:block;width:100%;padding:14px 20px;border:1px solid var(--o5-line);border-radius:999px;background:var(--o5-surface);font-family:var(--o5-display);font-size:14px;font-weight:600;color:var(--o5-ink);outline:none;transition:border-color .15s;box-sizing:border-box}
.sid-field:focus{border-color:var(--o5-ink)}
.sid-field::placeholder{color:var(--o5-ink3);font-weight:500}
.sid-pwd{position:relative}
.sid-pwd input{padding-right:48px}
.sid-pwd .eye{position:absolute;top:50%;right:16px;transform:translateY(-50%);background:transparent;border:0;padding:0;color:var(--o5-ink2);cursor:pointer}
.sid-forgot{align-self:flex-end;display:inline-block;margin-top:2px;font-size:11.5px;font-weight:700;color:#d62133;text-decoration:none}
.sid-forgot:hover{color:#b91c2c}
.sid-toggle{display:grid;grid-template-columns:1fr 1fr;gap:0;padding:6px;border-radius:999px;background:var(--o5-surface-2);margin-top:18px}
.sid-toggle-btn{padding:13px 18px;border:0;border-radius:999px;background:transparent;font-family:var(--o5-display);font-size:13.5px;font-weight:800;color:var(--o5-ink2);cursor:pointer;transition:background .18s,color .18s,box-shadow .18s}
.sid-toggle-btn:hover{color:var(--o5-ink)}
.sid-toggle-btn.is-on{background:#d62133;color:#fff;box-shadow:0 6px 14px -8px rgba(214,33,51,0.45)}
.sid-foot{margin:22px 0 0;font-size:13px;color:var(--o5-ink2);text-align:center}
.sid-foot a{color:#d62133;font-weight:800}
@media (max-width:520px){.sid-hero{padding:52px 26px 26px}.sid-form{padding:24px 26px 30px}}
/* ── Old Event Page — billboard + gallery-slot overrides ── */
.evp-facts-wrap{margin-bottom:20px}
.oep-billboard{position:relative;border-radius:var(--o5-r);overflow:hidden;height:340px;background:var(--o5-surface-2)}
.evp-sec{padding:22px 0}
.oep-2col{display:grid;grid-template-columns:1fr 360px;gap:40px;align-items:start}
.oep-sidebar{position:sticky;top:96px;display:flex;flex-direction:column;gap:22px}
.oep-sidebar .evp-sec{padding:0;border-top:0}
.oep-sidebar .evp-sec+.evp-sec{margin-top:0}
.oep-side-card{border:1px solid var(--o5-line);border-radius:var(--o5-r);background:var(--o5-surface);overflow:hidden}
.oep-tile-head{background:var(--o5-surface-2);padding:18px 20px}
.oep-tile-head h2{font-size:18px;margin:0 0 4px;font-family:var(--o5-display);font-weight:800;letter-spacing:-0.01em;color:var(--o5-ink)}
.oep-tile-head p{font-size:13px;margin:0;color:var(--o5-ink2)}
.oep-tile-body{padding:20px}
@media (max-width:900px){.oep-2col{grid-template-columns:1fr}.oep-sidebar{position:static}}
.oep-billboard image-slot{position:absolute;inset:0}
.oep-heart{width:40px;height:40px;border-radius:50%;background:var(--o5-surface);border:1px solid var(--o5-line);display:inline-flex;align-items:center;justify-content:center;color:#d62133;cursor:pointer;transition:border-color .15s,transform .15s;flex:none}
.oep-heart:hover{border-color:#d62133;transform:scale(1.07)}
.oep-heart.is-saved svg{fill:#d62133}
.oep-titleblock-r{align-items:flex-end}
.oep-desc{font-family:var(--o5-display);font-size:15.5px;line-height:1.7;color:var(--o5-ink2);max-height:none;overflow:hidden}
.oep-desc p{margin:0 0 16px}
.oep-desc p:last-child{margin-bottom:0}
.oep-desc strong{color:var(--o5-ink);font-weight:800}
.oep-desc.is-collapsed{max-height:9.6em}
.oep-readless{display:inline-flex;align-items:center;gap:8px;padding:11px 20px;border:0;border-radius:999px;background:var(--o5-surface-2);font-family:var(--o5-display);font-size:13.5px;font-weight:700;color:var(--o5-ink);cursor:pointer;margin:16px 0 0;transition:background .15s}
.oep-readless:hover{background:var(--o5-line)}
.oep-readless svg{transition:transform .2s}
.oep-readless.is-collapsed svg{transform:rotate(180deg)}
.oep-gal-modal .evp-loc{border:0;background:transparent}
.oep-gal-modal .evp-loc-map{border-radius:14px}
.oep-booking-card{box-shadow:0 24px 48px -28px rgba(0,0,0,0.18);background:var(--o5-surface-2);border-color:var(--o5-line)}
.oep-booking-card .oep-price-from .lbl,.oep-booking-card .oep-price-from .amt{color:var(--o5-ink)}
.oep-booking-card .evp-date{background:#fff}
.oep-booking-card .evp-date.is-on{background:#fff;border-color:var(--o5-line)}
.oep-booking-card .evp-date:hover{border-color:var(--o5-ink2)}
.oep-booking-card .evp-date.is-on .dow,.oep-booking-card .evp-date.is-on .dom,.oep-booking-card .evp-date.is-on .mon{color:var(--o5-ink)}
.oep-booking-card .evp-btn-proceed{background:#d62133;color:#fff;box-shadow:none}
.oep-booking-card .evp-btn-proceed:hover{background:#c01c2c}
.oep-booking-card .oep-tile-body{padding:28px}
.oep-price-from{display:flex;align-items:baseline;gap:6px;margin:0 0 22px;flex-wrap:wrap}
.oep-price-from .lbl{font-size:13px;font-weight:500;color:var(--o5-ink2)}
.oep-price-from .amt{font-family:var(--o5-display);font-size:26px;font-weight:800;letter-spacing:-0.02em;color:var(--o5-ink)}
.oep-price-from .unit{font-size:14px;font-weight:600;color:var(--o5-ink2)}
.oep-date-list .evp-dates{display:flex;flex-wrap:wrap;gap:10px;overflow:visible;margin:0;padding:0}
.oep-date-list .evp-date{flex:0 0 calc(25% - 7.5px);cursor:default}
.oep-gal-grid{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:150px;gap:10px}
.oep-gal-cell{position:relative;border-radius:14px;overflow:hidden}
.oep-gal-cell image-slot{position:absolute;inset:0}
.oep-media-actions{display:flex;gap:10px;margin-top:16px}
.oep-gal-pill,.oep-video-pill{display:inline-flex;align-items:center;gap:8px;padding:11px 20px;border:0;border-radius:999px;background:var(--o5-surface-2);color:var(--o5-ink);font-family:var(--o5-display);font-size:13.5px;font-weight:700;cursor:pointer;transition:background .15s}
.oep-gal-pill:hover,.oep-video-pill:hover{background:var(--o5-line)}
.oep-video-frame{position:relative;aspect-ratio:16/9;border-radius:14px;overflow:hidden;background:#111}
.oep-video-frame video{width:100%;height:100%;display:block}
.oep-video-empty{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;color:#fff;background:rgba(0,0,0,0.35);font-family:var(--o5-display);font-size:13px;text-align:center;pointer-events:none}
.oep-video-empty svg{opacity:.9}
.oep-gal-modal-overlay{position:fixed;inset:0;background:rgba(20,20,20,0.6);backdrop-filter:blur(2px);opacity:0;pointer-events:none;transition:opacity .25s ease;z-index:300}
.oep-gal-modal-overlay.is-open{opacity:1;pointer-events:auto}
.oep-gal-modal{position:fixed;left:50%;top:50%;transform:translate(-50%,-48%);width:min(880px,92vw);max-height:86vh;overflow-y:auto;background:var(--o5-surface);border-radius:var(--o5-r);padding:28px;z-index:301;opacity:0;pointer-events:none;transition:opacity .25s ease,transform .3s cubic-bezier(.22,.61,.36,1)}
.oep-gal-modal.is-open{opacity:1;pointer-events:auto;transform:translate(-50%,-50%)}
.oep-gal-modal-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.oep-gal-modal-head h2{margin:0;font-family:var(--o5-display);font-size:22px;font-weight:800;letter-spacing:-0.015em;color:var(--o5-ink)}
.oep-gal-close{width:36px;height:36px;border-radius:50%;border:1px solid var(--o5-line);background:var(--o5-surface);display:inline-flex;align-items:center;justify-content:center;cursor:pointer;color:var(--o5-ink)}
.oep-gal-close:hover{border-color:var(--o5-ink)}
@media (max-width:760px){.oep-gal-grid{grid-template-columns:repeat(2,1fr)}.oep-billboard{height:320px}}

/* == Event page date chips - times, label row, scroller, equal-height lock == */
.oep-2col{align-items:stretch}
.oep-col-l{display:flex;flex-direction:column}
.oep-col-l .evp-sec,.oep-sidebar .evp-sec{display:flex;flex-direction:column;flex:1;padding:0}
.oep-col-l .oep-side-card,.oep-sidebar .oep-side-card{flex:1;display:flex;flex-direction:column}
.oep-booking-card .oep-tile-body{padding:28px;flex:1;display:flex;flex-direction:column}
.oep-date-list{display:flex;flex-direction:column}
.oep-dates-label{font-size:13px;font-weight:500;color:var(--o5-ink2);margin:auto 0 8px;display:flex;align-items:center;justify-content:space-between;gap:10px}
.oep-date-nav{display:flex;gap:6px}
.oep-date-arrow{width:24px;height:24px;border-radius:0;border:0;background:transparent;color:var(--o5-ink2);display:inline-flex;align-items:center;justify-content:center;cursor:pointer;transition:color .15s}
.oep-date-arrow:hover{color:var(--o5-ink)}
.oep-date-arrow:disabled{opacity:.35;cursor:default}
.oep-date-arrow:disabled:hover{color:var(--o5-ink2)}
.oep-date-list .evp-dates{display:flex;flex-wrap:nowrap;gap:10px;overflow-x:auto;scrollbar-width:none;margin:0 -4px;padding:0 4px 4px}
.oep-date-list .evp-dates::-webkit-scrollbar{display:none}
.oep-date-list .evp-date{flex:0 0 64px;cursor:default;padding-bottom:9px}
.oep-date-list .evp-date .oep-date-time{margin-top:5px;padding-top:5px;border-top:1px solid var(--o5-line);font-size:9.5px;font-weight:700;color:var(--o5-ink2);letter-spacing:.02em}
.oep-date-list .evp-date.is-on .oep-date-time{border-top-color:rgba(255,255,255,0.3);color:rgba(255,255,255,0.85)}

/* ═══════════ Event description: long-token containment ═══════════
   BUG: a description that is one unbroken token with no whitespace grew the
   Information card past its container and put a horizontal scrollbar on the
   whole page, header included.

   Two independent causes, both needed fixing:

   1. overflow-wrap:anywhere on the text. NOT word-wrap/overflow-wrap:break-word
      -- those break the token when painting but do NOT reduce the element's
      min-content contribution, so the ancestor sizing below still resolved
      against the full unbroken width. Only `anywhere` feeds back into
      intrinsic sizing.

   2. min-width:0 on the grid/flex items above it. A grid item's default
      min-width:auto resolves to the min-content of its subtree, and
      .oep-2col's `1fr` track is minmax(auto,1fr) -- so the track itself grew
      to fit the token, overflowing .evp-wrap's 1280px and scrolling the page.
      .oep-side-card's overflow:hidden clipped the paint but did nothing to the
      sizing, which is why the card looked contained while the page still
      scrolled.

   Of the ancestors, only .oep-col-l STRICTLY needs it -- it is the grid item.
   .evp-sec / .oep-side-card / .oep-tile-body are flex items of column-direction
   containers (event-page.css:1557-1559), where the automatic minimum applies to
   the main axis (vertical), not width. They are included defensively: flipping
   any of those to flex-direction:row would silently reintroduce this bug. */
.oep-desc{overflow-wrap:anywhere}
.oep-col-l{min-width:0}
.oep-col-l .evp-sec,
.oep-col-l .oep-side-card,
.oep-col-l .oep-tile-body{min-width:0}

/* The collapse stays on the .oep-desc.is-collapsed max-height rule above.
   DELIBERATELY NOT -webkit-line-clamp, despite that being the idiom used for
   cart row titles in option5.css: that clamps plain text inside a <strong>,
   whereas this element is th:utext rich HTML authored freely by promoters and
   really does contain <p> children (see the .oep-desc p rule above).
   display:-webkit-box with block-level children is exactly the case where
   line-clamp degrades -- it can clamp at a paragraph boundary, or show only
   the first paragraph, instead of at the nth line. max-height has no such
   limitation on arbitrary markup. Robustness beats a cleaner clamp edge here. */

/* ═══════════ Sidebar must not stretch to the left column ═══════════
   Expanding Read More grew the right-hand card to match the taller left
   column, leaving whitespace inside a card taller than its content.

   .oep-2col sets align-items:start at :1494 -- which is correct -- but :1556
   re-declares the same selector as align-items:stretch and, at equal
   specificity and later in the file, wins. Rather than flip :1556 back (that
   would also stop .oep-col-l stretching, and its .evp-sec flex:1 at :1558
   relies on that to fill the left card when the SIDEBAR is the taller column),
   opt just the sidebar out.

   The sidebar does depend on the stretch internally: three chained flex:1
   rules -- .oep-sidebar .evp-sec (:1558), .oep-sidebar .oep-side-card (:1559)
   and .oep-booking-card .oep-tile-body (:1560) -- each grow to fill the height
   above them. Left as-is against a now content-sized column they would be
   growing into a height derived from their own flex-basis:0, so they are
   pinned to flex:0 0 auto here. No margin-top:auto or height:100% exists
   anywhere in the sidebar, so nothing else was holding the layout apart.

   Short-description case is unaffected: the sidebar is then the taller column,
   the grid row is its height, and align-self:start places a content-height box
   in a row of exactly that height -- no shrink. .oep-col-l keeps the inherited
   stretch and still fills to match.

   Side effect, and a fix in its own right: .oep-sidebar has
   position:sticky;top:96px (:1495), which a stretched grid item cannot honour
   because it is already as tall as its row. Sizing to content is what lets it
   actually stick. */
.oep-sidebar{align-self:start}
.oep-sidebar .evp-sec,
.oep-sidebar .oep-side-card,
.oep-sidebar .oep-booking-card .oep-tile-body{flex:0 0 auto}
