.food-carousel-header {
  background: linear-gradient(90deg, #14534a, #1f7166);
}
.food-carousel-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.food-carousel-header .count-box {
  min-width: 56px;
}
.food-carousel-header .count-num {
  font-size: 1rem;
}
.food-carousel-header .count-label {
  font-size: 0.7rem;
}

/* decorative center image */
.food-carousel-decor {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 1;
  z-index: 0; /* place behind header content */
  width: min(70%, 900px);
  max-width: 1000px;
}
.food-carousel-decor img {
  display: block;
  width: 100%;
  height: auto; /* responsive */
}
.food-carousel-header {
  position: relative;
  overflow: visible; /* allow decorative image to show if it overflows slightly */
}
.food-carousel-header-inner {
  /* ensure content sits above the decor */
  position: relative;
  z-index: 2;
}

/* responsive tweaks */
@media (max-width: 640px) {
  .food-carousel-decor {
    width: 90%;
    opacity: 1;
  }
  .food-carousel-header .count-box {
    min-width: 44px;
  }
}
