.dynamic-sections {
  display: grid;
  gap: 0;
}

.cms-section {
  display: grid;
  gap: 1rem;
  padding: 2rem 1rem;
  background: #fff;
}

.cms-section:nth-child(even) {
  background: #fff7f4;
}

.cms-section > img {
  width: 100%;
  max-height: 420px;
  border-radius: 20px;
  object-fit: cover;
}

.cms-section h2 {
  margin: .25rem 0 .75rem;
}

.testimonial-grid {
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 1rem;
  border-left: 4px solid #bf171f;
  border-radius: 12px;
  background: white;
}

.testimonial-grid footer {
  margin-top: .5rem;
  font-weight: 800;
}

.testimonial-dish-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  max-height: 280px;
  overflow: auto;
}

.testimonial-dish-choices label {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  padding: .65rem;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.testimonial-dish-choices input {
  width: 18px;
  height: 18px;
  border-radius: 2px;
}

.welcome-dialog {
  width: min(90vw, 430px);
  padding: 0;
  border: 0;
  border-radius: 24px;
}

.welcome-dialog > div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: .65rem;
  padding: 1.25rem;
  text-align: center;
}

.welcome-dialog img {
  width: min(52vw, 210px);
  aspect-ratio: 1;
  object-fit: contain;
}

.menu-row .product-track + .product-track {
  margin-top: .65rem;
}

@media (min-width: 760px) {
  .cms-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    padding: 3rem max(4vw, 2rem);
  }

  .cms-section:not(:has(> img)) {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-dish-choices {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
