/* ============================================================
   GROW
   ============================================================ */
.grow__head { text-align: center; max-width: 720px; margin: 0 auto; }
.grow__title { margin: 20px auto 22px; }

.grow__why {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 2.5rem);
}
.grow__item { text-align: center; padding: 0 12px; }
.grow__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 18px;
  border-radius: 50% 50% 50% 6px;
  background: var(--t-blush); color: var(--t-forest);
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
}
.grow__item h3 { margin-bottom: 10px; }
.grow__item p { font-size: var(--t-sm); color: var(--text-2); line-height: 1.6; }

@media (max-width: 760px) {
  .grow__why { grid-template-columns: 1fr; gap: 2.5rem; }
}
