.featured-collections__container {
  padding: 30px 0 0;

  @media (min-width: 990px) {
    padding: 60px 0 0;
  }
}

.featured-collections__header {
  margin: 0 0 45px;

  @media (min-width: 990px) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 52px;
  }
}

.featured-collections__heading {
  font-size: 24px;
  line-height: 30px;
  text-align: center;

  @media (min-width: 990px) {
    font-size: 30px;
    line-height: 36px;
    text-align: left;
  }
}

.featured-collections__slider {
  padding: 0 0 80px;

  @media (min-width: 990px) {
    padding: 0;
  }
}

.featured-collections__wrapper {
  display: grid;
  grid-auto-flow: column;
  align-items: stretch;
}

.featured-collections__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  @media (min-width: 990px) {
    position: static;
    width: initial;
  }
}

.featured-collections__item  {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.featured-collections__item .img-snippet {
  border-radius: 10px;

  img {
    border-radius: 10px;
  }
}

.featured-collections__item-title {
  font-size: 16px;
  line-height: 22px;
  text-align: center;

  @media (min-width: 990px) {
    font-size: 24px;
    line-height: 30px;
  }
}