.collections-card {
  display: flex;
  align-self: stretch;
  height: 100%;
  position: relative;
}
.collections-card:hover {
  text-decoration: none;
}


.collection__card:not(.collection__card--last) .collections-card::after {
  content: '';
  position: absolute;
  bottom: 32px;
  right: 32px;
  background-image: url(../../images/icons/arrow--white.svg);
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  width: 54px;
  height: 54px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  transition: ease all 150ms;
  background-color: var(--color-primary--1);
}
.collection__card:not(.collection__card--last) .collections-card:hover::after  {
  background-color: var(--color-white);
  background-image: url("../../images/icons/small-blue-arrow--right.svg");
}

.collections-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  overflow: hidden;
  position: relative;
}

.collections-card__texts {
  display: flex;
  padding: 24px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;

  min-height: 250px;
}




.collections-card__title {
  font-family: var(--font-title);
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 35.7px */
  text-transform: uppercase;
}

.collections-card__subtitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  align-self: stretch;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */

  max-width: 310px;
}


@media all and (min-width:480px) {
  .collections-card::after {
    right: 16px;
    bottom: 16px;
  }
}


@media all and (min-width:1600px) {
  .collections-card__texts {
    padding: 48px 64px;
  }
}
