/* ================================================================
   THE JERK SHAC — events.css
   Page-specific styles for events.html
   ================================================================ */

/* ── EVENTS HERO ─────────────────────────────────────────────────── */
.ev-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ev-hero-bg { position: absolute; inset: 0; }
.ev-hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: hero-zoom 14s ease forwards;
}
@keyframes hero-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
.ev-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14,28,24,0.65) 0%,
    rgba(10,20,14,0.45) 50%,
    rgba(8,16,10,0.88) 100%
  );
}
.ev-hero-body {
  position: relative; z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 1rem) var(--pad) 2rem;
  max-width: 900px;
}
.ev-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0.5rem 0 0;
}
.ev-hero-title span {
  color: var(--gold);
  display: block;
}
.ev-hero-logo {
  display: block;
  width: clamp(250px, 37.5vw, 425px);
  height: clamp(250px, 37.5vw, 425px);
  object-fit: cover;
  border-radius: 20px;
  margin: 0.2rem auto 0;
  mix-blend-mode: normal;
  transition: transform 0.4s var(--ease);
}
.ev-hero-logo:hover {
  transform: scale(1.04);
}
.ev-hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  color: var(--w-65);
  margin: 1.4rem 0 2.4rem;
}

/* ── FEATURED EVENT (Sunday Brunch) ──────────────────────────────── */
.ev-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.ev-feature-img {
  overflow: hidden;
}
.ev-feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.ev-feature-img:hover img { transform: scale(1.04); }

.ev-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(2.5rem, 6vw, 5rem);
  background: var(--deep-green, var(--teal));
  position: relative;
  overflow: hidden;
}
.ev-feature-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/patterns/jamaican-pattern-large.png');
  background-size: 100% auto;
  background-repeat: repeat;
  opacity: 0.045;
  filter: blur(1.5px);
  pointer-events: none;
  z-index: 0;
}
.ev-feature-text > * { position: relative; z-index: 1; }
.ev-feature-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--w-65);
  line-height: 1.9;
  max-width: 440px;
  margin-top: 1.4rem;
  text-align: center;
}
.ev-feature-text .section-title { margin-bottom: 0; }

.ev-feature-details {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border-top: 1px solid var(--w-12);
  padding-top: 1.8rem;
}
.ev-feature-details li {
  display: flex;
  gap: 1.2rem;
  align-items: baseline;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--w-65);
}
.ev-detail-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  width: 4.5rem;
}

/* ── BRUNCH MODAL ────────────────────────────────────────────────── */
.ev-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1600;
}
.ev-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ev-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 12, 0.74);
  backdrop-filter: blur(10px);
}
.ev-modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 2rem));
  max-height: min(690px, calc(100vh - 2rem));
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(201, 164, 53, 0.22);
  box-shadow: 0 34px 90px rgba(5, 12, 10, 0.55);
}
.ev-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(11, 23, 19, 0.82);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.ev-modal-close:hover {
  transform: scale(1.05);
  background: rgba(201, 164, 53, 0.18);
  border-color: rgba(201, 164, 53, 0.35);
}
.ev-feature--modal {
  min-height: min(690px, calc(100vh - 2rem));
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}
.ev-feature--modal .ev-feature-img {
  display: block;
}
.ev-feature--modal .ev-feature-img img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: none;
}
.ev-feature--modal .ev-feature-img:hover img {
  transform: scale(1.04);
}
.ev-feature--modal .ev-feature-text {
  padding: clamp(1.9rem, 3.6vw, 2.8rem) clamp(1.8rem, 3.2vw, 2.6rem);
}
.ev-feature--modal .label {
  margin-bottom: 0.45rem;
}
.ev-feature--modal .section-title {
  font-size: clamp(3.1rem, 5.6vw, 4.8rem);
  line-height: 0.92;
}
.ev-feature--modal .ev-feature-text p {
  max-width: 380px;
  margin-top: 1rem;
  line-height: 1.65;
}
.ev-feature--modal .ev-feature-details {
  width: min(100%, 380px);
  margin-top: 1.35rem;
  gap: 0.72rem;
  padding-top: 1.15rem;
}
.ev-feature--modal .ev-feature-details li {
  font-size: 0.88rem;
  line-height: 1.5;
}
.ev-feature--modal .social-links {
  justify-content: center;
  margin-top: 1.2rem;
}
.ev-feature--modal .btn-text {
  margin-top: 1rem;
}
.ev-card-action {
  appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
body.brunch-modal-open {
  overflow: hidden;
}

/* ── EVENT TYPE CARDS ────────────────────────────────────────────── */
.ev-types {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--cream);
}
.ev-types-head {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.ev-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  overflow: visible;
}

.ev-card {
  position: relative;
  overflow: hidden;
  background: var(--teal);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  transform: scale(1);
  transform-origin: center;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), z-index 0.2s ease;
}
.ev-card-img {
  position: absolute; inset: 0;
}
.ev-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.34) saturate(0.45);
  transition: transform 0.9s var(--ease), filter 0.4s;
}
.ev-card:hover {
  transform: scale(1.08);
  box-shadow: 0 28px 64px rgba(8, 18, 14, 0.34);
  z-index: 3;
}
.ev-card:hover .ev-card-img img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1.12);
}
.ev-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,28,24,0.9) 0%, rgba(14,28,24,0.52) 58%, rgba(14,28,24,0.22) 100%);
  transition: background 0.35s ease, opacity 0.35s ease;
}
.ev-card:hover .ev-card-overlay {
  background: linear-gradient(to top, rgba(10,20,16,0.52) 0%, rgba(10,20,16,0.12) 58%, rgba(10,20,16,0.02) 100%);
}
.ev-card-body {
  position: relative; z-index: 2;
  margin-top: auto;
  padding: 2.5rem;
  transition: transform 0.35s var(--ease);
}
.ev-card:hover .ev-card-body { transform: translateY(-4px); }

.ev-card-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}
.ev-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.ev-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--w-65);
  line-height: 1.75;
  max-width: 100%;
  margin-bottom: 1.2rem;
}
.ev-card .btn-text { margin-top: 0; color: var(--gold); }
.ev-card .btn-text:hover { color: var(--gold-light); }

/* ── VENUE SECTION ───────────────────────────────────────────────── */
.ev-venue {
  background: var(--teal);
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
}
.ev-venue--gallery {
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.ev-venue-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.ev-venue--gallery .ev-venue-inner {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.ev-venue-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--w-65);
  line-height: 1.9;
  max-width: 440px;
  margin-top: 1.6rem;
}
.ev-venue-text p + p { margin-top: 1rem; }
.ev-venue-text .section-title { margin-top: 0.8rem; }

.ev-venue-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.ev-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--w-06, rgba(255,255,255,0.06));
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.3s;
}
.ev-stat:hover { background: rgba(201,164,53,0.08); }
.ev-stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.ev-stat-num--infinity {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
.ev-stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w-35);
}
.ev-stat-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.ev-stat--hours .ev-stat-num {
  font-size: clamp(1.55rem, 2.35vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.ev-stat--hours .ev-stat-label {
  margin-top: 0.1rem;
}
.ev-venue-gallery {
  margin-top: 0;
}
.ev-gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}
.ev-gallery-button {
  min-width: 15rem;
  justify-content: center;
}

/* ── EVENTS GALLERY MODAL ───────────────────────────────────────── */
.event-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.event-gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.event-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 10, 0.46);
  backdrop-filter: blur(8px) saturate(0.9);
  -webkit-backdrop-filter: blur(8px) saturate(0.9);
}
.event-gallery-panel {
  width: min(1120px, 100%);
  max-height: min(86vh, 900px);
  position: relative;
  z-index: 1;
  overflow: auto;
  background: rgba(18, 34, 30, 0.4);
  border: 1px solid rgba(201,164,53,0.34);
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 38px 120px rgba(0,0,0,0.55);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
  padding: clamp(1.25rem, 3vw, 2.2rem);
  transform: translateY(18px) scale(0.985);
  opacity: 0;
  transition: transform 0.22s var(--ease), opacity 0.22s ease;
}
.event-gallery-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 38%, rgba(255,255,255,0.03));
  pointer-events: none;
}
.event-gallery-panel > * {
  position: relative;
  z-index: 1;
}
.event-gallery-modal.is-open .event-gallery-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.event-gallery-close,
.event-viewer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(201,164,53,0.35);
  background: rgba(8,23,18,0.82);
  color: var(--gold-light);
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.event-gallery-close:hover,
.event-viewer-close:hover {
  background: var(--gold);
  color: var(--teal);
  transform: translateY(-1px);
}
.event-gallery-head {
  max-width: 700px;
  margin-bottom: 1.4rem;
  padding-right: 3rem;
  margin-inline: auto;
  text-align: center;
}
.event-gallery-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
}
.event-gallery-head p:not(.label) {
  color: rgba(253,246,227,0.75);
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.65;
  margin-top: 0.7rem;
}
.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.event-gallery-tile {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(201,164,53,0.16);
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  cursor: zoom-in;
  padding: 0;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  animation: event-tile-pop 0.24s var(--ease) forwards;
  animation-delay: var(--tile-delay, 0ms);
}
.event-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.86) saturate(0.95);
  transition: transform 0.36s var(--ease), filter 0.25s ease;
}
.event-gallery-tile:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}
.event-gallery-note {
  color: rgba(253,246,227,0.58);
  font-size: 0.82rem;
  line-height: 1.65;
  margin-top: 1rem;
}
.event-gallery-viewer {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: rgba(18, 34, 30, 0.4);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}
.event-gallery-viewer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.event-gallery-viewer img {
  max-width: min(94vw, 1180px);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 34px 120px rgba(0,0,0,0.55);
  animation: event-image-open 0.2s var(--ease) both;
}
body.gallery-modal-open {
  overflow: hidden;
}
@keyframes event-tile-pop {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes event-image-open {
  from {
    opacity: 0;
    transform: scale(0.975);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── BOOKING SECTION ─────────────────────────────────────────────── */
.ev-book {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--cream-d);
  border-top: 4px solid var(--teal);
}
.ev-book-head {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.ev-book-intro {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.8;
  margin-top: 1.2rem;
}
.ev-form {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ev-feature { grid-template-columns: 1fr; min-height: auto; }
  .ev-feature-img { min-height: 400px; }
  .ev-feature-text { padding: 3rem var(--pad); text-align: center; align-items: center; }
  .ev-feature-text p { max-width: 100%; }
  .ev-feature-details { width: 100%; }
  .ev-feature-details li { justify-content: center; }
  .ev-types-head { max-width: 100%; text-align: center; }
  .ev-cards { grid-template-columns: 1fr; }
  .ev-card { min-height: 380px; }
  .ev-card-body { text-align: center; }
  .ev-card-body .btn-text { justify-content: center; }
  .ev-venue-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ev-venue-text { text-align: center; }
  .ev-venue-text p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .ev-venue-stats { grid-template-columns: 1fr 1fr; }
  .ev-stat { align-items: center; text-align: center; }
  .ev-stat--hours .ev-stat-num { font-size: 1.7rem; }
  .ev-book-head { text-align: center; }
  .ev-feature--modal {
    min-height: auto;
  }
  .ev-venue--gallery .ev-venue-inner {
    margin-bottom: 2rem;
  }
  .event-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-gallery-panel { max-height: 88vh; }
  .event-gallery-head { padding-right: 2.5rem; }
}
@media (max-width: 640px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .ev-hero {
    min-height: 76svh;
  }
  .ev-hero-photo {
    object-position: center 58%;
    transform: scale(1.08);
  }
  .ev-hero-title {
    font-size: clamp(2.6rem, 11.5vw, 4.6rem);
    line-height: 0.92;
  }
  .ev-hero-body {
    max-width: 20rem;
    padding: calc(var(--nav-h) + 0.75rem) 1.25rem 1.5rem;
  }
  .ev-hero-logo {
    width: min(66vw, 250px);
    height: min(66vw, 250px);
  }
  .ev-hero-sub {
    max-width: 18rem;
    margin: 0.9rem auto 1.6rem;
    font-size: 0.98rem;
    line-height: 1.45;
  }
  .ev-types { padding: 4rem 1.5rem; }
  .ev-book { padding: 4rem 1.5rem; }
  .ev-venue { padding: 4rem 1.5rem; }
  .ev-venue-stats { grid-template-columns: 1fr 1fr; }
  .ev-stat { padding: 1.8rem 1rem; }
  .ev-stat-num { font-size: 2.6rem; }
  .ev-stat--hours .ev-stat-num {
    font-size: 1.35rem;
    line-height: 1.02;
  }
  .ev-stat-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }
  .form-row { grid-template-columns: 1fr; }
  .ev-card-body { padding: 1.8rem; }

  /* Global centering for events page on mobile */
  .intro-strip,
  .ev-feature-text,
  .ev-feature-details,
  .ev-types-head,
  .ev-card-body,
  .ev-venue-text,
  .ev-venue-inner,
  .ev-book-head,
  .ev-book-intro { text-align: center; }

  .intro-strip { padding: 2rem 1.5rem; }
  .ev-book-intro { margin-inline: auto; max-width: 340px; }
  .ev-gallery-button {
    width: 100%;
    min-width: 0;
  }
  .ev-modal {
    padding: 0.9rem;
  }
  .ev-modal-panel {
    width: min(22rem, calc(100vw - 1.8rem));
    max-height: min(38rem, calc(100vh - 1.8rem));
    border-radius: 30px;
    overflow: auto;
  }
  .ev-modal-close {
    top: 0.7rem;
    right: 0.7rem;
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.4rem;
  }
  .ev-feature--modal {
    min-height: auto;
  }
  .ev-feature--modal .ev-feature-img {
    min-height: 170px;
  }
  .ev-feature--modal .ev-feature-img img {
    height: 100%;
  }
  .ev-feature--modal .ev-feature-text {
    padding: 1.7rem 1.15rem 1.45rem;
  }
  .ev-feature--modal .section-title {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }
  .ev-feature--modal .ev-feature-text p {
    margin-top: 0.7rem;
    font-size: 0.92rem;
    line-height: 1.45;
  }
  .ev-feature--modal .ev-feature-details {
    width: min(100%, 18rem);
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    gap: 0.55rem;
  }
  .ev-feature--modal .social-links {
    margin-top: 0.8rem;
  }
  .ev-feature--modal .social-btn {
    padding: 0.78rem 0.95rem;
    font-size: 0.72rem;
  }
  .ev-feature--modal .btn-text {
    margin-top: 0.7rem;
    font-size: 0.72rem;
  }
  .event-gallery-grid { grid-template-columns: 1fr; }

  /* Stack detail rows vertically and centre */
  .ev-feature-details li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--w-12);
  }
  .ev-feature-details li:last-child { border-bottom: none; }
  .ev-detail-label { width: auto; }
}
