.product-block {
  background-color: #fbf9f3;
  border-radius: 12px;
  overflow: hidden;
}
.product-block .product-content {
  padding: 24px 16px;
}
.product-block .product-content p {
  font-size: 18px;
  line-height: 26px;
}
.product-block .product-content p:not(:last-of-type) {
  margin-bottom: 24px;
}
.product-block .product-content p:last-of-type {
  margin-bottom: 32px;
}
.product-block .product-content ul,
.product-block .product-content ol {
  margin-bottom: 32px;
  padding-left: 0;
}
.product-block .product-content ul li,
.product-block .product-content ol li {
  list-style-type: none;
  position: relative;
  padding-left: 28px;
}
.product-block .product-content ul li::before,
.product-block .product-content ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background-image: url(../images/icons/half-circled-tick.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.product-block .product-content ul li:not(:last-child),
.product-block .product-content ol li:not(:last-child) {
  margin-bottom: 4px;
}
.product-block .product-content .rating-price {
  margin-bottom: 32px;
}
.product-block .product-content .rating-price .stars {
  margin-bottom: 12px;
}
.product-block .product-content .rating-price h4 {
  margin-bottom: 0;
}
.product-block .product-content a.btn {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .product-block {
    gap: 40px;
  }
  .product-block .product-content {
    padding: 36px 0 36px 36px;
  }
  .product-block .product-content p:last-of-type {
    margin-bottom: 28px;
  }
  .product-block .product-content .rating-price {
    margin-bottom: 28px;
  }
  .product-block .product-image {
    min-width: 350px;
    width: 350px;
  }
}
