/* ===========================================================
   foodie | Premium Soups (Huegli) – tomato-red classic design
   Version: 1.0.1
   =========================================================== */

.foodie-huegli {
  --accent: #b3272d;   /* Tomato-Rot */
  --ok: #2f7d32;       /* Check-Grün */
  --ok-bg: #e7f3e7;    /* Hellgrün für Vorteile */
  --text: #222;
  --muted: #666;
  --card: #fff;
  --shadow: 0 6px 22px rgba(0,0,0,.06);
  font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  text-align: justify;
}

/* Headline */
.foodie-huegli h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  text-align: left;
  margin: 0 0 .75rem;
}

/* Fließtext */
.foodie-huegli p {
  margin: .55rem 0;
}

/* Badges */
.foodie-huegli .fqm-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0 1.2rem;
}
.foodie-huegli .fqm-badges img {
  width: 110px;
  height: 110px;
  display: block;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  transition: transform .15s ease;
}
.foodie-huegli .fqm-badges img:hover {
  transform: scale(1.05);
}

/* Subheadline */
.foodie-huegli h3 {
  font-size: 1.1rem;
  margin: 1rem 0 .4rem;
}

/* Vorteile-Liste mit grünen Kästchen */
.foodie-huegli .fh-benefits {
  list-style: none;
  padding: 0;
  margin: .4rem 0 1.2rem;
}
.foodie-huegli .fh-benefits li {
  position: relative;
  padding: .55rem .75rem .55rem 3rem;
  margin: .4rem 0;
  background: var(--ok-bg);
  border: 1px solid rgba(47,125,50,.18);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
}
.foodie-huegli .fh-benefits li::before {
  content: "";
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--ok);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.15);
}
.foodie-huegli .fh-benefits li::after {
  content: "";
  position: absolute;
  left: 1.33rem;
  top: 50%;
  transform: translateY(-55%) rotate(45deg);
  width: 6px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

/* Hinweisbox */
.foodie-huegli .fh-note {
  background: var(--ok-bg);
  color: var(--muted);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  margin-top: .8rem;
}

/* Responsive */
@media (max-width:1024px) {
  .foodie-huegli .fqm-badges img { width: 200px; }
}
@media (max-width:640px) {
  .foodie-huegli h2 { font-size: 1.4rem; }
  .foodie-huegli .fqm-badges img { width: 180px; }
}
