.collection-entry {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  flex-grow: 0;
  flex-shrink: 0;
  text-decoration: none;
  color: currentColor;
  cursor: pointer;
}

.collection-entry-image {
  position: relative;
  width: 100%;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 150ms;
  overflow: hidden;
}

.collection-entry-image::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.027);
  pointer-events: none;
  transition: all 0.2s ease;
}

.collection-entry-title {
  font-size: var(--type-body-font-size);
  text-align: center;
  padding: 0;
  margin: 0;
  padding-top: 8px;
  font-family: var(--font-body-family);
  font-style: normal;
  font-weight: 700;
}

.collection-entry-image__default {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  fill: #999999;
  background-color: rgba(225, 225, 225, 1);
}
