/* ===== Scoped Ingredient Section ONLY ===== */
.ingredient-section * {
  box-sizing: border-box;
}

.ingredient-section {
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Mobile First */
.ingredient-section .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: auto;
}

.ingredient-section .box {
  padding: 20px;
  border-radius: 10px;
  line-height: 1.6;
}

.ingredient-section .blue {
  background: #c9d2e6;
}
.ingredient-section .yellow {
  background: #f6efbf;
}
.ingredient-section .green {
  background: #dff0e3;
}
.ingredient-section .purple {
  background: #d9d3ea;
}

.ingredient-section h2 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
}

.ingredient-section ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.ingredient-section li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
}

.ingredient-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* Tablet */
@media (min-width: 768px) {
  .ingredient-section .grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .ingredient-section h2 {
    font-size: 20px;
  }

  .ingredient-section li {
    font-size: 16px;
  }
}
.probiotic-section {
  max-width: 1200px;
  margin: 40px auto;
  font-family: "Georgia", serif;
}

.probiotic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Two-column on desktop */
@media (min-width: 768px) {
  .probiotic-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.probiotic-card {
  padding: 20px 22px;
  color: #fff;
  line-height: 1.6;
}

.probiotic-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #000;
}

.probiotic-card p {
  margin: 0 0 10px;
  font-size: 15px;
}

/* Color Blocks */
.ba {
  background: #4f8678;
}
.bl {
  background: #7c8c93;
}
.bp {
  background: #7d6068;
}
.bs {
  background: #d39a6a;
}
.mos {
  background: #ef5b73;
}

/* Emphasis */
.probiotic-card strong,
.probiotic-card em {
  font-style: italic;
  font-weight: 600;
}
