/* Gap between brand logos and hero CTA buttons */
.hero-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin: 28px auto 40px;
}
.hero-buttons {
  margin-top: 4px;
}
@media (max-width: 480px) {
  .hero-brands {
    margin: 22px auto 32px;
    gap: 12px;
  }
}
