/* OUR ARTISTS — ported from sonymusiclatin.com */
.sm-artists-section {
  background: transparent;
  color: #fff;
  padding: 4rem 0 6rem;
  overflow: hidden;
}

.sm-artists-section__header {
  text-align: center;
  margin-bottom: 1rem;
}

.sm-artists-section__star {
  display: block;
  width: 43px;
  height: auto;
  margin: 0 auto 1rem;
}

.sm-artists-section__heading {
  display: block;
  width: min(325px, 85vw);
  height: auto;
  margin: 0 auto;
}

.sm-artists-section__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  padding: 0 2rem;
}

.sm-careers .sm-artists-section__btn {
  color: #fff;
}

.sm-careers .sm-artists-section__btn:hover {
  color: #000;
}

.sm-artists-section__btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1px solid #fff;
  background: #000;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.sm-artists-section__btn:hover {
  background: #fff;
  color: #000;
}

.sm-artists-section__btn strong {
  font-weight: 700;
}

.artists-marquee-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: transparent;
  overflow: visible;
  padding: 2rem 0 0;
}

.artists-marquee-wrapper .artists-marquee-row {
  width: 100%;
  overflow: visible;
  margin-bottom: -2rem;
  position: relative;
}

.artists-marquee-wrapper .artists-marquee-row:last-child {
  margin-bottom: 0;
}

.artists-marquee-wrapper .artists-marquee-track {
  display: flex;
  gap: 3rem;
  width: fit-content;
  will-change: transform;
  cursor: grab;
}

.artists-marquee-wrapper .artists-marquee-track.is-dragging {
  cursor: grabbing;
}

.artists-marquee-wrapper .artist-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: fit-content;
  padding: 2rem 0;
  text-decoration: none;
  color: inherit;
}

.artists-marquee-wrapper .artist-circle {
  width: 290px;
  height: 290px;
  min-width: 290px;
  min-height: 290px;
  max-width: 290px;
  max-height: 290px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: block;
}

.artists-marquee-wrapper .artist-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: transparent;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.artists-marquee-wrapper .artist-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 0;
}

.artists-marquee-wrapper .artist-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  z-index: 2;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 0 12px;
  line-height: 1.2;
}

.artists-marquee-wrapper:has(.artist-card:hover):not(:has(.is-dragging)):not(:has(.is-scrolling)) .artist-card {
  transform: scale(0.6);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.artists-marquee-wrapper:not(:has(.is-dragging)):not(:has(.is-scrolling)) .artist-card:hover {
  transform: scale(1.15) !important;
  z-index: 10 !important;
}

.artists-marquee-wrapper:not(:has(.is-dragging)):not(:has(.is-scrolling)) .artist-card:hover .artist-circle::before {
  background: rgba(0, 0, 0, 0.5);
}

.artists-marquee-wrapper:not(:has(.is-dragging)):not(:has(.is-scrolling)) .artist-card:hover .artist-circle {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.artists-marquee-wrapper:not(:has(.is-dragging)):not(:has(.is-scrolling)) .artist-card:hover .artist-name {
  opacity: 1;
}

.artists-marquee-wrapper .is-dragging .artist-card,
.artists-marquee-wrapper .is-scrolling .artist-card {
  pointer-events: none;
}

@media (max-width: 768px) {
  .sm-artists-section {
    padding: 3rem 0 4rem;
  }

  .artists-marquee-wrapper .artist-circle {
    width: 180px;
    height: 180px;
    min-width: 180px;
    min-height: 180px;
    max-width: 180px;
    max-height: 180px;
  }

  .artists-marquee-wrapper .artists-marquee-track {
    gap: 25px;
  }

  .artists-marquee-wrapper .artist-name {
    font-size: 12px;
  }

  .artists-marquee-wrapper:not(:has(.is-dragging)):not(:has(.is-scrolling)) .artist-card:hover .artist-name {
    font-size: 15px;
  }
}
