#main-exhibition .featured-exhibition-block {
  padding: var(--spacer-3xl) 0;
}

.artists-sidebar {
  position: fixed;
  padding: var(--spacer-md) var(--spacer-xs);
  width: 28rem;
  top: 70vh;
  right: 0;
  z-index: 10;
  border: 0.5px solid var(--black-40);
  border-left: 0;
  border-right: 0;

  display: flex;
  flex-direction: column;
  gap: var(--spacer-md);
  box-sizing: border-box;
}

.artist-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacer-xs);
  position: relative;
  width: 100%;
}

.artist-list .artist-item {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.artist-list .artist-item .teaser {
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
  position: relative;
  width: 100%;
  display: flex;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 1rem;
}

.artist-list .artist-item .teaser span {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.artist-list .artist-item .teaser::after {
  position: absolute;
  padding: inherit;
  right: 0;
  bottom: 0;
  top: 0;
}

@media (max-width: 1024px) {
  .artists-sidebar {
    display: none;
  }
}
