/* ============================================================
   MOBILE SERVICES CAROUSEL — /services/ page
   Swipeable row of service cards shown under the hero on mobile.
   Only rendered on mobile (JS-gated), so styles apply directly.
   ============================================================ */

.mob-services-carousel { margin: 22px 0 8px; }

/* horizontal scroll-snap track; bleeds to the screen edges so cards
   can peek past the page gutter */
.mob-services-carousel .msc-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 24px 6px;
  margin: 0 -24px;
  scrollbar-width: none;
}
.mob-services-carousel .msc-track::-webkit-scrollbar { display: none; }

.mob-services-carousel .msc-card {
  flex: 0 0 84%;
  max-width: 360px;
  scroll-snap-align: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 14px 14px 22px;
  display: flex;
  flex-direction: column;
}

.mob-services-carousel .msc-imgwrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #2b3440;
}
.mob-services-carousel .msc-img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.mob-services-carousel .msc-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1d1d1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.mob-services-carousel .msc-card:active .msc-arrow { background: #67be83; }

.mob-services-carousel .msc-title {
  font-family: "Cabinet Grotesk", "HelveticaNeueLT Pro 65 Medium", Arial, sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.25;
  color: #1d1d1f;
  text-align: center;
  margin: 18px 0 0;
  padding: 0 6px;
  text-wrap: balance;
}

/* scrollbar-style progress thumb */
.mob-services-carousel .msc-progress-track {
  position: relative;
  height: 4px;
  border-radius: 4px;
  background: #d9efe0;
  margin: 16px 40px 0;
  overflow: hidden;
}
.mob-services-carousel .msc-progress {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 4px;
  background: #67be83;
  transition: left 0.2s ease-out, width 0.2s ease-out;
}
