/* Events Hero */
.ice-events-hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--ice-events-hero-pt-mobile, 120px);
  padding-bottom: var(--ice-events-hero-pb-mobile, 96px);
  background: var(--ice-events-hero-bg-start, #0f1419);
  color: var(--ice-events-hero-text, #faf8f5);
}
.ice-events-hero__bg,
.ice-events-hero__bg-image { position: absolute; inset: 0; pointer-events: none; }
.ice-events-hero__bg { background: linear-gradient(to bottom, var(--ice-events-hero-bg-start, #0f1419) 0%, var(--ice-events-hero-bg-end, #1a1d23) 100%); opacity: var(--ice-events-hero-bg-overlay-opacity, .75); z-index: 1; }
.ice-events-hero__bg-image { background-image: var(--ice-events-hero-background-image, none); background-position: var(--ice-events-hero-background-position, center center); background-size: var(--ice-events-hero-background-size, cover); background-repeat: no-repeat; z-index: 0; }
.ice-events-hero::after { content: ""; position: absolute; inset: 0; background: var(--ice-events-hero-background-overlay, rgba(15,20,25,0.55)); z-index: 1; pointer-events: none; }
.ice-events-hero__container { position: relative; z-index: 2; width: min(var(--ice-events-hero-container-max, 1280px), calc(100% - (var(--ice-events-hero-side-mobile, 24px) * 2))); margin: 0 auto; }
.ice-events-hero__content { width: 100%; max-width: var(--ice-events-hero-content-max, 760px); margin: 0 auto; text-align: center; }
.ice-events-hero__badge { display: inline-flex; margin: 0 auto 1.5rem; padding: .5rem 1rem; border-radius: 999px; border: 1px solid var(--ice-events-hero-badge-border, #5e5130); background: var(--ice-events-hero-badge-bg, rgba(197,169,94,0.10)); }
.ice-events-hero__badge span { color: var(--ice-events-hero-accent, #c5a95e); font-size: 14px; font-weight: 700; }
.ice-events-hero__title { margin: 0 auto 1.5rem; color: var(--ice-events-hero-text, #faf8f5); font-size: var(--ice-events-hero-heading-size-mobile, 42px); line-height: var(--ice-events-hero-heading-line-height, 1.05); letter-spacing: -0.02em; font-weight: 700; text-wrap: balance; }
.ice-events-hero__highlight { color: var(--ice-events-hero-accent, #c5a95e); }
.ice-events-hero__description, .ice-events-hero__descriptionEditor { margin: 0 auto 2rem; }
.ice-events-hero__description p, .ice-events-hero__descriptionEditor { margin: 0; color: var(--ice-events-hero-muted, #d0ccc6); font-size: var(--ice-events-hero-body-size-mobile, 18px); line-height: var(--ice-events-hero-body-line-height, 1.8); text-align: center; }

.ice-events-hero__boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ice-events-hero-boxes-gap, 24px);
  max-width: 820px;
  margin: 0 auto;
}
.ice-events-hero__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--ice-events-hero-box-padding, 24px);
  background: var(--ice-events-hero-box-bg, #1a1d23);
  border: 1px solid var(--ice-events-hero-box-border, rgba(255,255,255,0.10));
  border-radius: var(--ice-events-hero-box-radius, 12px);
}
.ice-events-hero__box-label {
  color: var(--ice-events-hero-box-label, #a1a1aa);
  font-size: 14px;
  margin-bottom: 4px;
}
.ice-events-hero__box-value {
  color: var(--ice-events-hero-text, #faf8f5);
  font-size: 18px;
  font-weight: 600;
}

.ice-events-hero__buttons-wrap {
  margin-top: var(--ice-events-hero-button-top-space, 32px);
}
.ice-events-hero__buttons, .ice-events-hero__buttons--theme { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; width: 100%; margin: 0 auto; }
.ice-events-hero__button, .ice-events-hero__buttons--theme .wp-block-button__link {
  display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: .95rem 1.75rem; text-decoration: none; font-weight: 600;
  transition: transform .3s ease, box-shadow .3s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}
.ice-events-hero__button:hover, .ice-events-hero__buttons--theme .wp-block-button__link:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 14px 30px rgba(0,0,0,.22); }
.ice-events-hero__disclaimer { margin: 1.5rem auto 0; text-align: center; color: var(--ice-events-hero-muted, #d0ccc6); font-size: var(--ice-events-hero-disclaimer-size, 14px); opacity: .75; }

/* consistent load animation like the homepage hero */
.ice-events-hero--animate .ice-events-hero__content {
  animation: iceEventsHeroFadeUp var(--ice-events-hero-animation-duration, 0.9s) ease-out var(--ice-events-hero-animation-delay, 0s) both;
}
.ice-events-hero--bg-zoom .ice-events-hero__bg-image {
  animation: iceEventsHeroBgZoom calc(var(--ice-events-hero-animation-duration, 0.9s) + 0.5s) ease-out both;
}
@keyframes iceEventsHeroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes iceEventsHeroBgZoom {
  from { transform: scale(1.06); opacity: 0.6; }
  to { transform: scale(1); opacity: 1; }
}

@media (min-width: 640px) {
  .ice-events-hero__buttons, .ice-events-hero__buttons--theme { flex-direction: row; flex-wrap: wrap; }
  .ice-events-hero__boxes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .ice-events-hero { padding-top: var(--ice-events-hero-pt-desktop, 180px); padding-bottom: var(--ice-events-hero-pb-desktop, 160px); }
  .ice-events-hero__container { width: min(var(--ice-events-hero-container-max, 1280px), calc(100% - (var(--ice-events-hero-side-desktop, 48px) * 2))); }
  .ice-events-hero__title { font-size: var(--ice-events-hero-heading-size-desktop, 72px); }
  .ice-events-hero__description p, .ice-events-hero__descriptionEditor { font-size: var(--ice-events-hero-body-size-desktop, 20px); }
}


/* v1.4.1.1 events hero box icons */
.ice-events-hero__box-icon {
  width: var(--ice-events-hero-icon-size, 32px);
  height: var(--ice-events-hero-icon-size, 32px);
  color: var(--ice-events-hero-accent, #c5a95e);
  margin-bottom: 12px;
  flex: 0 0 auto;
}



/* v1.4.1.2 stronger hero animation */
.ice-events-hero--animate .ice-events-hero__content {
  opacity: 0;
}

