html {
  --main-color: #C5488E;
}

.section-products__item {
  margin-top: 40px;
  display: block;
}
@media screen and (min-width: 800px) {
  .section-products__item {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}
.section-products__item-image {
  border-radius: 20px;
  overflow: hidden;
  height: 140px;
}
.section-products__item-image img {
  margin: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 800px) {
  .section-products__item-image {
    height: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}
.section-products__item-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
@media screen and (min-width: 800px) {
  .section-products__item-title {
    font-size: clamp(0.625rem, 0.246rem + 1.62vw, 1.5rem);
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 800px) {
  .section-products__item-title {
    margin-top: 0;
  }
}
.section-products__item-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
@media screen and (min-width: 800px) {
  .section-products__item-text {
    font-size: clamp(0.625rem, 0.462rem + 0.69vw, 1rem);
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.1em;
  }
}