@media (width >= 1000px) {
  .experience-dynamic-recipeCards .pd-section {
    width: 90rem;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

.recipe-cards {
  margin-bottom: 3rem;
}

.recipe-cards__header {
  margin-bottom: 1.5rem;
}

.recipe-cards__subheading {
  margin-bottom: 0;
}

.recipe-cards__track {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 1.5rem;
  padding-bottom: .25rem;
  display: flex;
  overflow-x: auto;
}

.recipe-cards__track::-webkit-scrollbar {
  display: none;
}

.recipe-cards__track .recipe-cards__card {
  flex: 0 0 80%;
  max-width: 80%;
}

.recipe-cards__track[data-card-count="1"] .recipe-cards__card {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (width >= 1000px) {
  .recipe-cards__track {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 0;
    overflow-x: visible;
  }

  .recipe-cards__track .recipe-cards__card {
    flex: 0 0 calc(25% - 18px);
    max-width: 100%;
  }
}

.recipe-cards__card {
  scroll-snap-align: start;
  flex-shrink: 0;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.recipe-cards__card:hover, .recipe-cards__card:focus-visible {
  text-decoration: none;
}

.recipe-cards__card:hover .recipe-cards__image, .recipe-cards__card:focus-visible .recipe-cards__image {
  transform: scale(1.009);
}

.recipe-cards__image-wrap {
  aspect-ratio: 1;
  background-color: #f5f5f5;
  width: 100%;
  overflow: hidden;
}

.recipe-cards__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .1s;
  display: block;
}

.recipe-cards__info {
  background-color: var(--color-dark);
  padding: 1rem 1.125rem 1.25rem;
}

.recipe-cards__name {
  letter-spacing: .04em;
  margin-bottom: .375rem;
}

.recipe-cards__description {
  opacity: .85;
  margin-bottom: 0;
  font-size: .875rem;
  line-height: 1.4;
}

.recipe-cards__dots {
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
  display: flex;
}

.recipe-cards__dot {
  cursor: pointer;
  background-color: #e6e6e6;
  border-radius: 50%;
  width: .5rem;
  height: .5rem;
  transition: background-color .2s, transform .2s;
  display: inline-block;
}

.recipe-cards__dot.is-active {
  background-color: var(--color-dark);
  transform: scale(1.25);
}


/*# sourceMappingURL=recipeCards.css.map*/