.block-collection-card {
  width: 100%;
  height: 100%;
}

.block-collection-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: var(--padding);
  overflow: hidden;
  background-color: rgb(243 243 243 / 100%);
}

.block-collection-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: var(--fit-type);
}

.block-collection-card__image-wrapper svg {
  width: 100%;
  height: 100%;
}

.block-collection-card__image-title-wrapper {
  position: absolute;
  inset: 0;
  padding: 10px 20px;
}

.block-collection-card__title {
  color: rgb(var(--color-text));
  font-family: var(--main-font);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  line-height: 36px;
  border-bottom: 1px solid #333;
}
.block-collection-card__title:hover {
    letter-spacing: 3px;
    font-weight: 700;
    color: #691c35;
}