/* Do not edit anything below */
.product-showcase-section {
  background-color: #fff;
}
.product-showcase-section .header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 1rem + 0.5 * (100vw - 48rem) / 27, 1.5rem);
  max-inline-size: 33.75rem;
  margin-block-end: clamp(2.5rem, 2.5rem + 0.5 * (100vw - 48rem) / 27, 3rem);
  margin-inline: auto;
}
.product-showcase-section .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 1.5rem + 1.5 * (100vw - 48rem) / 27, 3rem) 1rem;
  margin-block-end: clamp(2rem, 2rem + 1 * (100vw - 48rem) / 27, 3rem);
}
@media (width >= 768px) {
  .product-showcase-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 1024px) {
  .product-showcase-section .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-showcase-section .product {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 0.75rem + 0.25 * (100vw - 48rem) / 27, 1rem);
}
.product-showcase-section .image {
  background-color: rgba(103, 30, 58, 0.04);
  inline-size: 100%;
  max-inline-size: 29.6875rem;
  block-size: clamp(17.5rem, 17.5rem + 8.75 * (100vw - 48rem) / 27, 26.25rem);
  border-radius: 0.75rem;
}
@media (width >= 576px) {
  .product-showcase-section .image {
    margin-inline: auto;
  }
}
.product-showcase-section .meta {
  color: #080c11;
  font-family: "Libre Baskerville", serif;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
}
@media (width >= 576px) {
  .product-showcase-section .meta {
    text-align: center;
  }
}
.product-showcase-section .eyebrow {
  font-size: clamp(0.75rem, 0.75rem + 0.25 * (100vw - 48rem) / 27, 1rem);
  margin: 0;
}
.product-showcase-section .title {
  font-size: clamp(1rem, 1rem + 0.125 * (100vw - 48rem) / 27, 1.125rem);
  margin: 0;
}
.product-showcase-section .cta-group {
  display: flex;
  justify-content: center;
}