.preview-new-product {
  display: grid;
  column-gap: 16px;
  row-gap: 32px;
  grid-template-columns: 1fr 1fr;
}
.preview-new-product__container {
  display: flex;
  flex-direction: column;
}
.preview-new-product__image-container .img-responsive {
  width: 167px;
  height: 167px;
  border-radius: 8px;
}
.preview-new-product__title {
  font-family: 'Mango';
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 28px;
  /* or 108% */
  text-align: center;
  letter-spacing: 0.015em;
  /* Black */
  color: #000000;
  margin-top: 16px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .preview-new-product__image-container .img-responsive {
    width: 213px;
    height: 213px;
  }
  .preview-new-product {
    display: grid;
    column-gap: 20px;
    row-gap: 44px;
    grid-template-columns: 213px 213px;
    justify-content: center;
  }
  .homepage__section.homepage__new-products {
    align-items: center;
  }
  .homepage__section.homepage__new-products .button-new__secundary {
    margin-top: 44px;
    width: fit-content;
  }
}
