.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.collection-card {
  position: relative;
  height: 504px;
  overflow: hidden;
  color: var(--color-white);
  text-decoration: none;
  border-radius: 5px;
}
.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 0;
}
.collection-card:hover::before {
  transform: scale(1.1);
}
.collection-card .overlay,
.collection-card .collation-card-content {
  z-index: 2;
}
.collection-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #181818 14.9%, rgba(43, 43, 43, 0.00) 100%);
}
.collation-card-content {
  position: absolute;
  bottom: 30px;
  left: 24px;
  right: 24px;
  z-index: 2;
}
.collation-card-content h3 {
    margin-bottom: 12px;
}