.locations-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(168, 85, 247, .16), transparent 34%),
    linear-gradient(180deg, rgba(5, 2, 10, .96), rgba(18, 8, 37, .9));
}
.locations-section__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.locations-section__rings span {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 184, 223, .18);
  border-radius: 50%;
}
.locations-section__rings span:first-child {
  width: min(56vw, 740px);
  top: -250px;
  left: -170px;
}
.locations-section__rings span:last-child {
  width: min(42vw, 560px);
  right: -180px;
  bottom: -240px;
  border-color: rgba(168, 85, 247, .26);
}
.locations-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(270px, 390px) minmax(0, 1fr);
  gap: 46px;
  align-items: stretch;
}
.locations-heading {
  margin-bottom: 0;
}
.locations-heading p {
  max-width: 410px;
  font-size: 18px;
}
.locations-featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.location-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 22px;
  border: 1px solid rgba(199, 184, 223, .24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(46, 20, 95, .82), rgba(5, 2, 10, .52));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .08);
  isolation: isolate;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.location-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  top: -70px;
  border: 1px solid rgba(199, 184, 223, .18);
  border-radius: 50%;
  z-index: 1;
  transition: transform .32s ease, border-color .24s ease, opacity .24s ease;
}
.location-card:hover,
.location-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(250, 204, 21, .54);
  background: linear-gradient(180deg, rgba(58, 25, 116, .9), rgba(5, 2, 10, .58));
  box-shadow: 0 30px 82px rgba(0, 0, 0, .42), 0 0 0 1px rgba(250, 204, 21, .1);
}
.location-card:hover::before,
.location-card:focus-within::before {
  border-color: rgba(250, 204, 21, .42);
  opacity: 1;
  transform: scale(1.08);
}
.location-card--image {
  min-height: 300px;
  padding: 0;
  background: #05020a;
}
.location-card--image::before {
  z-index: 2;
  border-color: rgba(244, 239, 255, .24);
}
.location-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 2, 10, .06) 0%, rgba(5, 2, 10, .44) 44%, rgba(5, 2, 10, .9) 100%),
    linear-gradient(90deg, rgba(31, 12, 68, .72), rgba(31, 12, 68, .18));
}
.location-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .82;
  transform: scale(1.02);
  transition: transform .7s ease, opacity .7s ease;
}
.location-card--image:hover .location-card__image,
.location-card--image:focus-within .location-card__image {
  opacity: .96;
  transform: scale(1.07);
}
.location-card__content {
  position: relative;
  z-index: 2;
}
.location-card--image .location-card__content {
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding: 22px;
}
.location-card__number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 38px;
  border: 1px solid rgba(199, 184, 223, .26);
  border-radius: 50%;
  color: var(--muted);
  font-weight: 700;
  transition: border-color .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease;
}
.location-card--image .location-card__number {
  margin-bottom: 54px;
  background: rgba(5, 2, 10, .42);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.location-card h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.35vw, 30px);
  overflow-wrap: normal;
  transition: color .24s ease;
}
.location-card:hover h3,
.location-card:focus-within h3 {
  color: var(--gold-soft);
}
.location-card:hover .location-card__number,
.location-card:focus-within .location-card__number {
  border-color: rgba(250, 204, 21, .6);
  background: rgba(250, 204, 21, .14);
  box-shadow: 0 16px 34px rgba(250, 204, 21, .12);
  color: var(--gold-soft);
}
.location-card p {
  margin: 0;
}
.location-card--image h3,
.location-card--image p {
  text-shadow: 0 2px 18px rgba(0, 0, 0, .52);
}
.location-card__credit {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  align-self: flex-start;
  margin-top: 16px;
  color: rgba(244, 239, 255, .62);
  font-size: 11px;
  line-height: 1.4;
}
.location-card__credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.location-card__credit a:hover {
  color: var(--text);
}
.locations-marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 52px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.locations-marquee__track {
  display: flex;
  width: max-content;
  animation: locations-scroll 34s linear infinite;
  animation-play-state: paused;
}
.locations-section.is-section-active .locations-marquee__track {
  animation-play-state: running;
}
.locations-marquee__group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}
.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  padding: 16px 20px;
  border: 1px solid rgba(199, 184, 223, .22);
  border-radius: 999px;
  background: rgba(46, 20, 95, .58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  white-space: nowrap;
}
.location-pill strong {
  color: var(--text);
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
}
.location-pill em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}
.locations-marquee:hover .locations-marquee__track {
  animation-play-state: paused;
}
@keyframes locations-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 900px) {
  .locations-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .locations-featured {
    grid-template-columns: 1fr;
  }
  .location-card {
    min-height: 190px;
  }
  .location-card--image {
    min-height: 260px;
  }
}
@media (max-width: 560px) {
  .location-card--image .location-card__content {
    padding: 22px;
  }
  .location-card__number,
  .location-card--image .location-card__number {
    margin-bottom: 28px;
  }
  .locations-marquee {
    margin-top: 34px;
  }
  .location-pill {
    min-width: 220px;
    padding: 14px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .locations-marquee__track {
    animation-duration: 1ms;
    animation-iteration-count: 1;
  }
}
