.article-prose .beauty-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0 44px;
}

.article-prose .beauty-product-card {
  min-width: 0;
  margin: 0;
  border: 1px solid #e1dcd6;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.article-prose .beauty-product-card:hover {
  transform: translateY(-3px);
  border-color: #bfa99d;
  box-shadow: 0 16px 38px rgba(53, 40, 33, .09);
}

.article-prose .beauty-product-card > a,
.article-prose .beauty-product-card > a[target="_blank"] {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  color: #24211f;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.article-prose .beauty-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 22px;
  background: #faf8f5;
}

.article-prose .beauty-product-card figcaption {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px 20px 21px;
}

.article-prose .beauty-product-title {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.42;
}

.article-prose .beauty-product-cta {
  display: block;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid #e4ded8;
  color: #805846;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .article-prose .beauty-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .article-prose .beauty-product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .article-prose .beauty-product-card > a,
  .article-prose .beauty-product-card > a[target="_blank"] {
    display: grid;
    grid-template-columns: 116px 1fr;
  }

  .article-prose .beauty-product-card img {
    height: 100%;
    min-height: 150px;
    padding: 12px;
  }

  .article-prose .beauty-product-card figcaption {
    padding: 16px;
  }

  .article-prose .beauty-product-title {
    margin-bottom: 14px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-prose .beauty-product-card {
    transition: none;
  }
}
