.event-sticky-spacer { height: var(--event-sticky-height, 100px); }

.event-sticky {
  position: fixed;
  z-index: 9999;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #aff060;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.12);
}

.event-sticky__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  min-height: 68px;
  padding: 14px 30px;
  color: #111;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.3;
  transition: background-color 0.2s ease;
}

.event-sticky__link:hover {
  background: #a1e84c;
  color: #111;
}

.event-sticky__link:focus-visible {
  outline: 3px solid #111;
  outline-offset: -5px;
}

.event-sticky__text {
  text-align: center;
}

.event-sticky__text strong {
  font-weight: 700;
}

.event-sticky__divider {
  width: 1px;
  height: 26px;
  flex: 0 0 1px;
  background: rgba(0, 0, 0, 0.35);
}

.event-sticky__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.event-sticky__cta span {
  font-size: 22px;
  transition: transform 0.2s ease;
}

.event-sticky__link:hover .event-sticky__cta span {
  transform: translateX(4px);
}

@media (max-width: 700px) {
  .event-sticky__link {
    gap: 7px;
    flex-direction: column;
    min-height: 0;
    padding: 11px 18px 12px;
    font-size: 15px;
  }

  .event-sticky__divider {
    width: 50px;
    height: 1px;
    flex: 0 0 1px;
  }

  .event-sticky__text {
    line-height: 1.35;
  }

  .event-sticky__cta {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .event-sticky__link {
    padding: 10px 12px;
    font-size: 14px;
  }

  .event-sticky__cta {
    font-size: 14px;
  }
}
.event-sticky, .event-sticky * { box-sizing: border-box; }
.event-sticky { font-family: forma-djr-deck, Helvetica, Arial, sans-serif; }
.event-sticky__link { padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px)); }
@media (max-width: 700px) { .event-sticky__link { padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); } }
@media print { .event-sticky, .event-sticky-spacer { display: none !important; } }
