
body.is-scrollable {
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

.is-scrollable .content-container {
  min-height: 100vh;
  padding-top: 5rem;
  padding-bottom: 5rem;
}


body.is-scrollable {
  color: white;
}

.is-scrollable a {
  color: white;
}


.stash-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 280px;
  margin-bottom: 2rem;
}

.stash-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease;
}

.stash-item:hover {
  transform: scale(1.05);
  opacity: 1;
}

.stash-item img {
  width: 100%;
  height: auto;
  display: block;
}

.stash-item p {
  font-weight: bold;
}

.back-link {
  font-weight: bold;
  margin-top: 1rem;
}
