.artists-page {
  position: relative;
  box-sizing: border-box;
  height: 95vh;
  overflow: hidden;
  padding-top: 8vh; /* espaço para header fixo */
}

.list-title {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  padding: 1vh 0;
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: left;
  color: black;
  z-index: 6;
  background: transparent;
}

.content-wrap {
  display: flex;
  align-items: stretch;
  height: calc(95vh - (8vh + 3.2rem));
  margin-top: calc(3.2rem);
  box-sizing: border-box;
}

.artists-image {
  flex: 1 1 65%;
  min-width: 360px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-left: 0.7vw;
  overflow: visible;
}

.artists-image .image-frame {
  width: 500px;
  height: 500px;
  max-width: 45vw;
  max-height: 65vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artists-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  opacity: 1;
}

.artists-list {
  width: 100%;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 1vw;
  box-sizing: border-box;
}

.list-inner {
  width: 100%;
  max-height: calc(100vh - 16vh);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 12px;
  box-sizing: content-box;
  margin-right: -12px;
}
.list-inner::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.artists-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.artist-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  cursor: pointer;
  outline: none;
  transition: transform 150ms ease;
  user-select: none;
}

.artist-name {
  font-size: 3rem;
  font-weight: 800;
  color: black;
  line-height: 0.98;
  text-align: right;
  font-weight: 500;
}

.artist-item.active .artist-name {
  font-family: "Roc Regular", sans-serif;
}

@media (max-width: 900px) {
  .artists-page {
    height: auto;
    overflow: visible;
    padding-top: 13vh;
  }

  .worked-header {
    padding-top: 0 !important;
  }

  .list-title {
    position: relative;
    top: 0;
    padding: 1rem 4vw;
  }
  .content-wrap {
    flex-direction: column;
    margin-top: 0;
    height: auto;
  }
  .artists-image {
    display: none;
  }
  .artists-list {
    order: 1;
    width: 100%;
    padding: 1vh 4vw 3vh;
    align-items: flex-start;
  }

  .list-inner {
    max-height: none;
    overflow-y: visible;
    -webkit-overflow-scrolling: auto;
    padding-right: 0;
    margin-right: 0;
  }
  .image-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
  .artist-item {
    justify-content: flex-start;
    cursor: default;
  }
  .artist-name {
    font-size: 1.6rem;
    text-align: left;
  }
  .artist-item.active .artist-name {
    font-family: "Roc", sans-serif;
  }
}

.hover-swap.fade-out {
  opacity: 0;
}