/* Banner */
.banner-category {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.banner-category__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  width: 100%;
}

.banner-category__item {
  min-height: 360px;
  background: #d7bbb6;
  display: flex;
  flex-direction: column;
}

.banner-category__item:nth-child(2) {
  background: #dabd9b;
}

.banner-category__item:nth-child(3) {
  background: #f2b587;
}

.banner-category__item:nth-child(4) {
  background: #e4ded2;
}

.banner-category__item:nth-child(5) {
  background: #cac3bb;
}

.banner-category__item:nth-child(6) {
  background: #f0bdb7;
}

.banner-category__item:nth-child(7) {
  background: #e2a363;
}

.banner-category__item:nth-child(8) {
  background: #ddd8b5;
}

.banner-category__item:nth-child(9) {
  background: #e69651;
}

.banner-category__item:nth-child(10) {
  background: #d0a6af;
}

.banner-category__item:nth-child(11) {
  background: #f79991;
}

.banner-category__item:nth-child(12) {
  background: #d4a9c6;
}

.banner-category__item:nth-child(13) {
  background: #bbddcb;
}

.banner-category__image {
  width: 100%;
  max-width: 700px;
}

.banner-category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-category__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.banner-category__details--headline {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #000;
}

.banner-category__details--description {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  margin-bottom: 32px;
  max-width: 470px;
  width: 100%;
}

.banner-category__details--link {
  text-decoration: none;
  border: 1px solid #000;
  color: #000;
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  width: max-content;
  transition: 0.2s ease-in background-color, 0.2s ease-in color;
  font-weight: 700;
  font-size: 16px;
}
.banner-category__details--link:hover {
  background-color: #333;
  color: #fff;
}
@media only screen and (min-width: 767px) {
  .banner-category__list {
    gap: 32px;
    max-width: 1170px;
  }

  .banner-category__item {
    height: 360px;
    flex-direction: row;
  }

  .banner-category__item:nth-child(2n) {
    flex-direction: row-reverse;
  }

  .banner-category__details {
    padding: 42px 64px;
  }
  .banner-category__details--headline {
    font-size: 24px;
  }

  .banner-category__details--description {
    font-size: 16px;
  }
}
