/* ── Bambino newsletter ─────────────────────────────────────────────── */
.bmb-news__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.bmb-news__sub { max-width: 724px; }
.bmb-news__form { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center; }
.bmb-news__input {
  width: 377px; max-width: 100%; height: 50px;
  border: 2px solid var(--bambino-line); border-radius: 10px; padding: 0 20px;
  font-family: var(--bambino-font-body); font-weight: 600; font-size: 1rem; color: var(--bambino-ink);
  outline: none; background: #fff;
}
.bmb-news__input::placeholder { color: var(--bambino-muted); }
.bmb-news__input:focus { border-color: var(--bambino-teal); }
.bmb-news__btn {
  height: 50px; padding: 0 26px; border: none; cursor: pointer;
  background: var(--bambino-teal-deep); color: #f8f8f8; border-radius: 15px;
  font-family: var(--bambino-font-body); font-weight: 600; font-size: 1rem;
}
.bmb-news__btn:hover { filter: brightness(1.06); }
@media (max-width: 480px) { .bmb-news__input { width: 100%; } .bmb-news__form { width: 100%; } }
