.cc-album {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--cc-border-radius);
  box-shadow: var(--cc-box-shadow);
}

.cc-album:hover {
  box-shadow: var(--cc-box-shadow-hover);
}

.cc-album__cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms;
}

.cc-album:hover .cc-album__cover {
  transform: scale(1.1);
}

.cc-album__title {
  z-index: 1;
  max-width: 90%;
  max-height: 90%;
  padding: 0 .3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  text-align: center;
  background-color: rgb(var(--cc-gray-4-rgb) / .7);
  border-radius: var(--cc-border-radius);
}
