/* Mobile hero CTA: keep only one clean button */

@media (max-width: 768px) {
  .hero-actions {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 18px !important;
    gap: 0 !important;
  }

  .hero-actions .cta-secondary {
    display: none !important;
  }

  .hero-actions .cta:first-child {
    width: min(100%, 260px) !important;
    max-width: 260px !important;
    min-height: 48px !important;
    padding: 12px 22px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    line-height: 1.12 !important;
  }

  .hero-actions .cta:first-child span {
    max-width: 20ch !important;
    font-size: 13px !important;
    line-height: 1.12 !important;
    text-align: center !important;
  }
}

@media (max-width: 390px) {
  .hero-actions .cta:first-child {
    width: min(100%, 240px) !important;
    max-width: 240px !important;
    font-size: 12px !important;
  }

  .hero-actions .cta:first-child span {
    font-size: 12px !important;
  }
}
