/*
  Service grid cards – center title, arrow, and icon in each box.
  Load this AFTER main.min.css + overhaul.css (or paste into WP Customizer → Additional CSS).
  New filename avoids stale cache on overhaul.css?v=20210329 from the theme.
*/
.services-section .service-wrap {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.5rem !important;
}

@media (max-width: 767.98px) {
  .services-section .service-wrap {
    grid-template-columns: 1fr !important;
  }
}

.services-section .service-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: auto !important;
  max-width: none !important;
  padding: 2rem !important;
  box-sizing: border-box !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Legacy main.min.css used inline-block + bottom padding; reset for this section */
.services-section .service-item h4 {
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
}

.services-section .service-item .link-arrow {
  display: block;
}
