.op-artist-items {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-around;

  .op-artist-item {
    --img-color: #e0e0e0;
    --img-size: 100%;
    display: block;
    width: calc(var(--img-size) - 2rem);
    overflow: hidden;

    @media (min-width: 400px) {
      --img-size: 50%;
    }
    @media (min-width: 600px) {
      --img-size: 33.33337%;
    }
    @media (min-width: 1000px) {
      --img-size: 20%;
    }
    .op-artist-item-container {
      background-color: var(--img-color);
      margin: auto;
      width: 100%;
      aspect-ratio: 1/1;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: 0.5rem;
      border-radius: 50%;
      position: relative;
    }

    .op-artist-item-img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      transition: transform 2.2s;
    }

    &:hover {
      .op-artist-item-img {
        transform: scale(1.1);
      }
    }
  }

  .op-artist-item-title {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
  }
}
