a {
    text-decoration: none;
}

.card-list {
    display: flex;
    padding: 1.25rem;
    overflow-x: scroll;
}

.card-list::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.card-list::-webkit-scrollbar-thumb {
    background: var(--bg-primary);
    border-radius: 10px;
}

.card-list::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}


.card {
    min-width: 225px;
    padding: 1.25rem;
    border-radius: 16px;
    background: var(--bg-primary);
    box-shadow: -1rem 0 3rem var(--bg-secondary);
    display: flex;
    flex-direction: column;
    transition: .2s;
    margin: 0;
    scroll-snap-align: start;
    clear: both;
    position: relative;
}

.card:focus-within~.card, .card:hover~.card {
    transform: translateX(130px);
}

.card:hover {
    transform: translateY(-1rem);
}

.card:not(:first-child) {
    margin-left: -130px;
}

.card-header {
  width: 100%;
}

.card-body {
    margin: .4em 0 0;
    display: flex;
    flex-direction: column;
    margin-bottom: .5em;
}

.artist-portfolio {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-top: 12px;
}

.artist-portfolio .button {
  margin-top: 1em;
  padding: 0.5em 1em;
  color: #fff;
  background: var(--fa-p);
  border-radius: 2em;
  font-size: 14px;
}

.artist-portfolio .artist-socials {
  margin-top: 0.75em;
  width: 100%;
  text-align: center;
}

.artist-portfolio .artist-socials i {
  margin: 0 0.5em;
  color: var(--fa-p);
  font-size: 1.25em;
}

.artist-avatar {
    position: relative;
}

.artist-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    overflow: hidden;
    margin: 16px 10px;
}

.artist {
    grid-area: auto;
    box-sizing: border-box;
}

.artist-name {
    font-style: normal;
    font-weight: 700;
    color: var(--fa-p);
    text-transform: capitalize;
}

.artist span {
  color: var(--text-primary);
  font-size: 14px;
}

.half-circle {
  position: relative;
    margin-top: -5.25em;
    width: 120px;
    height: 96px;
    fill: none;
    stroke: var(--fa-s);
    stroke-width: 5;
    stroke-linecap: round;
    pointer-events: none;
}

.tags {
    margin: 1rem 0 2rem;
    padding: .5rem 0 1rem;
    line-height: 2;
    margin-bottom: 0;
}
