/* Match Button Factory's Salient event content; inherit its configured font family. */
.gather-event-page .wpb_text_column {
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
}
.gather-event-page h2 {
  font-size: clamp(28px, 3vw, 60px);
  line-height: 1.2;
  font-weight: 300;
}
.gather-event-page .wpb_text_column p {
  padding-bottom: 0;
  margin-bottom: 8px;
}
.gather-event-page .gather-event-details {
  margin-bottom: 24px;
}
.gather-event-page .gather-event-details a.gather-event-location {
  color: inherit;
  font: inherit;
  text-decoration: none;
  background-image: none;
  box-shadow: none;
}
.gather-event-page .gather-event-details a.gather-event-location:hover,
.gather-event-page .gather-event-details a.gather-event-location:focus {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.gather-tickets {
  background: #fffcf7;
}
.gather-tickets-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.gather-event-page .gather-tickets-heading h3 {
  margin: 0 !important;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
}
.gather-event-page a.gather-tickets-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  color: #aaa;
  font:
    400 10px/1.2 Arial,
    sans-serif;
  text-decoration: none;
  background-image: none;
  white-space: nowrap;
}
.gather-tickets-brand:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.gather-tickets-brand > span:first-child {
  width: 60px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1px;
  text-align: center;
}
/* Exact asset from apps/next/public/wordmark.svg (logged-out event header). */
.gather-wordmark {
  display: block;
  width: 60px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url(wordmark.svg) center / contain no-repeat;
  mask: url(wordmark.svg) center / contain no-repeat;
}
.gather-tickets-body {
  position: relative;
}
.gather-tickets-skeleton {
  display: none;
}
html[data-gather-embed-js] .gather-tickets:not([data-loaded='true']) iframe {
  pointer-events: none;
}
html[data-gather-embed-js] .gather-tickets:not([data-loaded='true']) .gather-tickets-skeleton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  height: 100px;
  background: #fffcf7;
  color: #777;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.gather-tickets-skeleton::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 16px;
  background: #e9e6e1;
}
.gather-tickets-spinner {
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border: 2px solid #c4c1bc;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: gather-tickets-spin 1s linear infinite;
}
@keyframes gather-tickets-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .gather-tickets-spinner {
    animation: none;
  }
}
.gather-tickets-slow[hidden] {
  display: none;
}
