/* v352G — Increase height of the 4 main service cards on Home.
   User request: make the cards taller downward so the layout feels more balanced. */

.home-page .home-route-grid {
  align-items: stretch !important;
}

.home-page .home-route-card {
  min-height: 440px !important;
  padding: 32px 32px 28px !important;
  gap: 16px !important;
}

.home-page .home-route-card strong {
  font-size: 19px !important;
  line-height: 1.2 !important;
}

.home-page .home-route-card .muted {
  font-size: 16px !important;
  line-height: 1.55 !important;
}

.home-page .home-route-card .text-link {
  margin-top: auto !important;
}

@media (max-width: 1200px) {
  .home-page .home-route-card {
    min-height: 410px !important;
    padding: 28px 28px 24px !important;
  }
}

@media (max-width: 980px) {
  .home-page .home-route-card {
    min-height: 360px !important;
    padding: 24px 24px 22px !important;
  }
}

@media (max-width: 640px) {
  .home-page .home-route-card {
    min-height: 0 !important;
    padding: 22px 20px !important;
  }
}
