.sli-event-ticker {
  --sli-ticker-navy: #071a33;
  --sli-ticker-navy-soft: #0f2035;
  --sli-ticker-gold: #c9a84c;
  --sli-ticker-border: rgba(201, 168, 76, 0.34);
  --sli-ticker-text: #f7f1df;
  --sli-ticker-muted: #c8d9f0;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--sli-ticker-border);
  border-bottom: 1px solid rgba(201, 168, 76, 0.24);
  background: var(--sli-ticker-navy);
  color: var(--sli-ticker-text);
  font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sli-event-ticker[hidden] {
  display: none !important;
}

.sli-event-ticker__inner {
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  min-height: 50px;
  padding: 6px 0;
  overflow: hidden;
}

.sli-event-ticker__fallback {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--sli-ticker-muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.sli-event-ticker__fallback:hover,
.sli-event-ticker__fallback:focus-visible {
  color: #ffffff;
}

.sli-event-ticker__heading {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.sli-event-ticker .splide,
.sli-event-ticker .splide__track {
  width: 100%;
  max-width: 100%;
  height: 38px;
  overflow: hidden;
}

.sli-event-ticker .splide__list {
  align-items: center;
  width: max-content;
  height: 38px;
  flex-wrap: nowrap;
}

.sli-event-ticker__static {
  display: flex;
  height: 38px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 2px 10px;
  padding: 0 14px;
  overflow: hidden;
  white-space: nowrap;
}

.sli-event-ticker__item {
  display: inline-flex;
  box-sizing: border-box;
  width: auto;
  max-width: none;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  color: var(--sli-ticker-muted);
  font-size: 0.9rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 4px;
}

.sli-event-ticker .splide__slide {
  width: auto;
  flex: 0 0 auto;
}

.sli-event-ticker .splide__slide:not(:last-child) .sli-event-ticker__item::after {
  content: "·";
  display: inline-block;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  margin-left: 12px;
  color: rgba(201, 168, 76, 0.72);
  font-weight: 800;
}

.sli-event-ticker__title {
  color: var(--sli-ticker-text);
  font-weight: 800;
}

.sli-event-ticker__separator {
  color: var(--sli-ticker-gold);
  opacity: 0.7;
}

.sli-event-ticker__meta {
  color: var(--sli-ticker-muted);
  font-weight: 700;
}

.sli-event-ticker__item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
}

.sli-event-ticker__item:hover .sli-event-ticker__meta {
  color: #ffffff;
}

.sli-event-ticker__item:focus-visible,
.sli-event-ticker__fallback:focus-visible {
  outline: 2px solid var(--sli-ticker-gold);
  outline-offset: 3px;
  background: rgba(201, 168, 76, 0.14);
}

.sli-event-ticker.is-static .sli-event-ticker__inner {
  height: 50px;
  min-height: 50px;
  padding: 6px 0;
}

@media (max-width: 640px) {
  .sli-event-ticker__inner {
    height: 48px;
    min-height: 48px;
    padding: 6px 0;
  }

  .sli-event-ticker .splide,
  .sli-event-ticker .splide__track,
  .sli-event-ticker .splide__list,
  .sli-event-ticker__static {
    height: 36px;
  }

  .sli-event-ticker__item {
    min-height: 32px;
    padding: 4px 11px;
    font-size: 0.82rem;
  }

  .sli-event-ticker__static {
    justify-content: flex-start;
    padding: 0 10px;
  }
}
