/* mixtapes index — /mixtapes/ */

#mixtapeIndexControls {
  display: flex;
  justify-content: flex-end;
  margin: 4px 0 12px 0;
}

#creamBtn {
  padding: 4px 12px;
  background: #dbedb9;
  color: #000;
  border: 1px solid #97BD78;
  font: bold 11px verdana, sans-serif;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
#creamBtn:hover {
  background: #c5e0a0;
}
#creamBtn.active {
  background: #97BD78;
  border-color: #7aaa5c;
}

#mixtapeIndexJumpBar {
  position: sticky;
  top: 0;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  padding: 5px 10px;
  margin: 0;
  z-index: 10;
  font-size: 12px;
  white-space: nowrap;
}

#mixtapeIndexJumpBar a {
  margin: 0 5px 0 0;
  font-weight: bold;
}

.mixtapeIndexLetterHead {
  border-bottom: 1px dashed #97BD78;
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 16px;
}

.mixtapeIndexLetterCount {
  font-size: 12px;
  font-weight: normal;
  color: #666;
}

.mixtapeIndexGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 6px;
}

.mixtapeIndexCard {
  display: flex;
  flex-direction: column;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}

.mixtapeIndexArtWrap {
  position: relative;
  width: 100%;
}

#centerColumn .mixtapeIndexCard .mixtapeIndexArtWrap a {
  display: block;
  padding: 0;
  border-bottom: none;
}

#centerColumn .mixtapeIndexCard .mixtapeIndexArtWrap a:hover {
  background-color: transparent;
}

.mixtapeIndexThumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.mixtapeIndexStar {
  position: absolute;
  top: 4px;
  left: 4px;
  color: #cc2200;
  background: none;
  font-size: 22px;
  padding: 0;
  border-radius: 0;
  line-height: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.mixtapeIndexCardBody {
  padding: 6px 8px;
  font-size: 11px;
  line-height: 1.4;
}

.mixtapeIndexTitle {
  font-weight: bold;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mixtapeIndexMeta {
  color: #555;
  margin-top: 2px;
}

.mixtapeIndexPoints {
  color: #333;
  margin-top: 2px;
}

.mixtapeIndexDate {
  color: #888;
  margin-top: 1px;
}
