/** Shopify CDN: Minification failed

Line 74:56 Unexpected "var("

**/
/*
  halea-ingredient-breakdown.css
  Place in: assets/

  CSS custom properties are set inline on .hlob-ing-section by the section Liquid,
  driven by theme editor settings — no need to edit this file for color or column changes.

  Custom properties used:
    --hlob-accent       Accent / ingredient name color
    --hlob-dose-clr     Dose label color
    --hlob-bg           Card background
    --hlob-border       Card border color
    --hlob-cols-desk    Desktop column count  (1–4)
    --hlob-cols-mobile  Mobile column count   (1–2)
*/

/* ── Section wrapper ─────────────────────────────────────────────────── */
.hlob-ing-section {
  font-family: inherit;
  color: inherit;
}
.hlob-ing-section * {
  box-sizing: border-box;
}

/* ── Header block ────────────────────────────────────────────────────── */
.hlob-ing-section .hlob-section {
  max-width: 100%;
  margin: 0 auto 32px;
  padding: 0 8px;
}

.hlob-ing-section .hlob-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--hlob-accent, #632C90);
  margin-bottom: 10px;
}

.hlob-ing-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hlob-ing-section p {
  line-height: 1.75;
  margin-bottom: 16px;
}
.hlob-ing-section p:last-child {
  margin-bottom: 0;
}

/* ── Ingredient grid ─────────────────────────────────────────────────── */
.hlob-ing-grid {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 8px;
  display: grid;
  grid-template-columns: repeat(var(--hlob-cols-desk, 2), minmax(0, 1fr));
  justify-content: center;
  gap: 16px;
}

/* Center orphaned cards in partial last rows */
.hlob-ing-grid .hlob-ing-item:last-child:not(:nth-child(var(--hlob-cols-desk, 2)n)) {
  grid-column: auto;
  justify-self: center;
  width: 100%;
  max-width: calc((100% - (var(--hlob-cols-desk, 2) - 1) * 16px) / var(--hlob-cols-desk, 2));
}

/* ── Ingredient card ─────────────────────────────────────────────────── */
.hlob-ing-item {
  background: var(--hlob-bg, #FAFAF8);
  border: 1px solid var(--hlob-border, #DDD6C8);
  padding: 20px 22px;
}

.hlob-ing-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--hlob-accent, #632C90);
  margin-bottom: 4px;
}

.hlob-ing-dose {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hlob-dose-clr, #B8924A);
  margin-bottom: 8px;
}

.hlob-ing-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 580px) {
  .hlob-ing-grid {
    grid-template-columns: repeat(var(--hlob-cols-mobile, 1), 1fr);
  }
  .hlob-ing-section .hlob-section {
    margin-left: var(--hlob-header-ml-mobile, 0px) !important;
  }
}