article.content:has(~ .pr-venues) {
  min-height: 0;
}
.pr-venues {
  background: #100d0b;
  border-top: 1px solid #201c19;
  border-bottom: 1px solid #201c19;
  padding: 44px 0 48px;
  overflow: hidden;
}
.pr-venues-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 64px;
  margin-bottom: 30px;
}
.pr-venues-hairline {
  flex: 1;
  height: 1px;
  background: #2a2622;
}
.pr-venues-title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #fff;
  white-space: nowrap;
}
.pr-venues-mask {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 18%,
      #000 82%,
      transparent);
  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 18%,
      #000 82%,
      transparent);
}
.pr-venues-mask.is-dragging {
  cursor: grabbing;
}
.pr-venues-track {
  display: flex;
  gap: 48px;
  align-items: center;
  width: max-content;
  will-change: transform;
}
.pr-venue {
  flex: none;
  width: 200px;
  height: 118px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-decoration: none;
  transition: transform .15s, opacity .15s;
}
.pr-venue:hover {
  transform: translateY(-2px);
  opacity: .85;
}
.pr-venue img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}
@media (max-width: 640px) {
  .pr-venues-head {
    padding: 0 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pr-venues-mask {
    cursor: default;
    touch-action: auto;
  }
  .pr-venues-track {
    transform: none !important;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
  }
  .pr-venues-track [aria-hidden=true] {
    display: none !important;
  }
}
