.snack-article {
  display: grid;
  gap: 42px;
}

.snack-article section {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.snack-article section:last-child {
  border-bottom: 0;
}

.snack-article h2 {
  margin-bottom: 14px;
}

.snack-article p + p {
  margin-top: 16px;
}

.answer-lead {
  font-family: Lora, Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.55;
  color: var(--ink);
}

.decision-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.decision-strip div {
  padding: 20px;
  background: #fff;
}

.decision-strip strong,
.decision-strip span {
  display: block;
}

.decision-strip strong {
  color: var(--forest);
  font-size: 1.05rem;
}

.decision-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
  padding: 0;
  counter-reset: snack-check;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 20px 18px 58px;
  border-radius: 12px;
  background: var(--natural);
}

.check-list li::before {
  position: absolute;
  top: 17px;
  left: 18px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  content: counter(snack-check);
  counter-increment: snack-check;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}

.snack-summary ul,
.source-section ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.snack-summary li,
.source-section li {
  margin-top: 9px;
}

.summary-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.source-section {
  font-size: 0.9rem;
}

.source-section a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 700px) {
  .decision-strip {
    grid-template-columns: 1fr;
  }
}


.product-picks {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.product-card h3 {
  margin: 0 0 8px;
}

.product-card p {
  margin: 0;
}

.product-card__meta {
  margin-top: 12px !important;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.product-card__cta:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--natural);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__cta {
    width: 100%;
  }
}
