.services-teaser {
  padding: 32px clamp(16px, 3vw, 38px);
  border-block: 1px solid #d5d9d9;
  background: #fff;
}

.services-teaser-inner { max-width: 1500px; margin: auto; }
.services-teaser-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.services-teaser-label { margin: 0; color: #8a5700; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.services-teaser h2 { margin: 0; color: #0f1111; font: 800 clamp(22px, 2.5vw, 29px)/1.2 system-ui, sans-serif; letter-spacing: -.02em; }
.services-teaser-actions { display: flex; flex-wrap: nowrap; gap: 9px; }
.services-teaser-button { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 8px 14px; border: 1px solid #8d9096; border-radius: 5px; background: #fff; color: #0f1111; font-size: 13px; font-weight: 750; line-height: 1; text-decoration: none; white-space: nowrap; }
.services-teaser-button.primary { border-color: #f0b800; background: #ffd814; }
.services-carousel-shell { position: relative; }

.services-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 21vw, 278px);
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: #8c9298 #eaeded;
  scrollbar-width: thin;
}

.services-carousel-track::-webkit-scrollbar { height: 7px; }
.services-carousel-track::-webkit-scrollbar-track { background: #eaeded; }
.services-carousel-track::-webkit-scrollbar-thumb { border-radius: 8px; background: #8c9298; }

.services-carousel-card {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d5d9d9;
  border-radius: 7px;
  background: #fff;
  color: #0f1111;
  text-decoration: none;
  scroll-snap-align: start;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.services-carousel-card:hover { border-color: #a7aaad; box-shadow: 0 6px 18px rgba(15, 17, 17, .12); transform: translateY(-2px); }
.services-carousel-card:focus-visible { outline: 3px solid rgba(255, 164, 28, .55); outline-offset: 2px; }
.services-carousel-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #eaeded; }
.services-carousel-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .25s ease; }
.services-carousel-card:hover .services-carousel-media img { transform: scale(1.025); }

.services-carousel-body { min-height: 126px; display: flex; flex: 1; flex-direction: column; padding: 12px; }
.services-carousel-body strong { display: -webkit-box; overflow: hidden; font-size: 14px; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.services-carousel-body small { display: -webkit-box; overflow: hidden; margin-top: 5px; color: #565959; font-size: 12px; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.services-carousel-price { margin-top: auto; padding-top: 10px; color: #0f1111; font-size: 14px; font-weight: 800; }

.services-carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 38%;
  width: 40px;
  height: 58px;
  border: 1px solid #d5d9d9;
  background: rgba(255,255,255,.96);
  color: #0f1111;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(15,17,17,.13);
  cursor: pointer;
  transform: translateY(-50%);
}

.services-carousel-arrow.previous { left: -10px; border-radius: 0 5px 5px 0; }
.services-carousel-arrow.next { right: -10px; border-radius: 5px 0 0 5px; }
.services-carousel-arrow:disabled { opacity: .38; cursor: default; }
.services-carousel-arrow[hidden] { display: none; }

@media (max-width: 800px) {
  .services-teaser { padding: 26px 16px; }
  .services-teaser-head { display: grid; gap: 12px; }
  .services-teaser-actions { flex-wrap: nowrap; }
  .services-teaser-button { min-width: 0; flex: 1; padding-inline: 8px; font-size: clamp(11px, 3vw, 13px); }
  .services-carousel-track { grid-auto-columns: minmax(196px, 72vw); gap: 11px; }
  .services-carousel-card { width: auto; }
  .services-carousel-body { min-height: 120px; }
  .services-carousel-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .services-carousel-track { scroll-behavior: auto; }
  .services-carousel-card, .services-carousel-media img { transition: none; }
}
