/* AI Assistant — custom overrides */

/* Fix services hero to be full width */
.page-hero { width: 100%; }

/* Hide "Learn more" links on service cards since we skip /services/ page */
.service-card-link { display: none; }

/* Make service cards not clickable (they link to /services/ which doesn't exist) */
a.service-card { pointer-events: none; cursor: default; text-decoration: none; color: inherit; }
.service-card { cursor: default; }

/* Better mobile spacing for service cards */
@media (max-width: 768px) {
  .services-grid { gap: 16px; }
  .service-card { padding: 20px; }
}
