#fw-section-custom-html-53b31c59-445c-417a-93e8-939bfe89bcb7 {

.onpitch-shell {
  width: 100%;
  max-width: 560px;
  padding: 22px;
  border-radius: 18px;

  background: #000000; /* ✅ pure black */

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.4); /* slightly deeper for contrast */

  text-align: center;
}
/* Mobile (default) — full width */
.onpitch-shell {
  width: 100%;
  margin: 0; /* no centering */
}

/* Desktop only */
@media (min-width: 768px) {
  .onpitch-shell {
    margin: 0 auto;   /* centers horizontally */
    max-width: 560px; /* keeps it from stretching */
  }
}

}