:root {
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

/* ===== Dish page: "Perfect For" list ===== */
.dish-perfect-for {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--bodyTextColor);
  line-height: 1.8;
}

/* ===== Dish page: Find Us / Location map section ===== */
.dish-location__box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.dish-location__map {
  min-height: 340px;
}

.dish-location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.dish-location__info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 2.25rem;
}

.dish-location__info h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--headerColor);
}

.dish-location__line {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0;
  color: var(--bodyTextColor);
  line-height: 1.5;
}

.dish-location__line i {
  color: #ca0000;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.dish-location__line a {
  color: inherit;
  text-decoration: none;
}

.dish-location__line a:hover {
  text-decoration: underline;
}

.dish-location__hours {
  list-style: none;
  margin: 0.25rem 0 0.5rem;
  padding: 0;
  border-top: 1px solid #f0f0f0;
}

.dish-location__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--bodyTextColor);
  font-size: 0.95rem;
}

.dish-location__directions {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 768px) {
  .dish-location__box {
    grid-template-columns: 1fr;
  }
  .dish-location__map,
  .dish-location__map iframe {
    min-height: 260px;
  }
  .dish-location__info {
    padding: 1.5rem;
  }
}
