.catalog-promo {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
}
.catalog-promo__wrapper {
  padding: 30px 20px;
  border-radius: 16px;
  background-color: #6274901A;
}
/* Блок 1 */
.catalog-promo__b1 {
  display: flex;
  gap: 20px;
}
.catalog-promo__b1--item {
  flex: 1;
}
.catalog-promo__b1--item:first-child {
  background-color: #E2D7FF;
}
.catalog-promo__b1--item:last-child {
  background-color: #FFE5B1;
}
@media screen and (max-width: 991px) {
  .catalog-promo__b1 {
    flex-direction: column;
  }
}
/* Блок 2 */
.catalog-promo__b2--wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.catalog-promo__b2--item {
  width: 100%;
}
.catalog-promo__b2--gallery--item img {
  aspect-ratio: 1.16;
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
/* Блок 3 */
.catalog-promo__b3 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}