/* the shelf, on /shelf/. the columns stack, then split at 680px. */

.shelf-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 18px;
}

@media (min-width: 680px) {
  .shelf-columns {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.shelf-col > h2 {
  color: var(--lilac);
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: lowercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
  margin: 0 0 10px 0;
}

.shelf-group {
  margin: 0 0 16px 0;
}

.shelf-group h3 {
  color: #9a9aa8;
  font-size: x-small;
  letter-spacing: 3px;
  text-transform: lowercase;
  margin: 0 0 6px 0;
}

.shelf-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shelf-item {
  border-left: 2px solid rgba(201, 184, 255, 0.3);
  padding: 2px 0 2px 10px;
  margin: 0 0 10px 0;
}

.shelf-title {
  display: block;
  color: var(--feather);
}

.shelf-title a {
  color: var(--feather);
  text-decoration: none;
}

.shelf-title a:hover {
  text-shadow: 0 0 8px var(--feather);
}

.shelf-meta {
  display: block;
  color: #7c7c8c;
  font-size: x-small;
  letter-spacing: 2px;
}

.shelf-note {
  display: block;
  color: #8a8a98;
  font-size: small;
  margin-top: 2px;
}
