/* Our Locations — Swiper carousel styling (shared). Keeps the original card design. */
.loc-swiper { position: relative; padding-bottom: 42px; }
/* flex-start, NOT stretch: with stretch, one over-tall slide inflates every other card and
   leaves the short ones floating in a tall empty box. Each slide now owns its height. */
.loc-swiper .swiper-wrapper { align-items: flex-start; }
.loc-swiper .swiper-slide { height: auto; display: flex; flex-direction: column; }
.loc-swiper .loc-photo { position: relative; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; }
.loc-swiper .loc-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
/* the square is what keeps every card the same height; without aspect-ratio the raw 400x445
   photos render tall and drag the whole row with them, so guarantee it the old way too. */
@supports not (aspect-ratio: 1 / 1) {
  .loc-swiper .loc-photo { height: 0; padding-top: 100%; }
}

/* arrows — auto-hidden by Swiper (.swiper-button-lock) when everything fits */
.loc-swiper .swiper-button-prev,
.loc-swiper .swiper-button-next {
  width: 40px; height: 40px; border-radius: 50%;
  top: calc(50% - 34px);
  background: #fff; border: 1px solid rgba(14,26,45,.12);
  box-shadow: 0 8px 20px -8px rgba(14,26,45,.3);
  color: #1F9BF0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.loc-swiper .swiper-button-prev::after,
.loc-swiper .swiper-button-next::after { font-size: 15px; font-weight: 800; }
.loc-swiper .swiper-button-prev:hover,
.loc-swiper .swiper-button-next:hover { transform: scale(1.07); }
.loc-swiper .swiper-button-disabled { opacity: 0; pointer-events: none; }
.loc-swiper .swiper-button-lock { display: none; }

/* dots */
.loc-swiper .swiper-pagination { bottom: 0; }
.loc-swiper .swiper-pagination-bullet {
  width: 7px; height: 7px; opacity: 1;
  background: rgba(14,26,45,.24);
  transition: width .22s ease, background .22s ease;
}
.loc-swiper .swiper-pagination-bullet-active { width: 22px; border-radius: 4px; background: #1F9BF0; }
.loc-swiper .swiper-pagination-lock { display: none; }

/* locations on a dark/navy section (drug-rehab v2) */
.dr2 .loc-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.32); }
.dr2 .loc-swiper .swiper-pagination-bullet-active { background: #2BA6FF; }
