/* =====================================================
   PT LOCATIONS – FRONTEND (PT Clinic)
   - mobile-first
   - premium look (Oddlini/Garamond)
   - subtle lift + micro-animations
===================================================== */

.pt-locations-wrap{
  --ptc-navy: #203b57;
  --ptc-navy-2: #2f445d;
  --ptc-ink: #0d2344;
  --ptc-muted: rgba(13,35,68,.72);

  --ptc-bg: #f3f1ee;
  --ptc-card: rgba(255,255,255,.86);
  --ptc-border: rgba(13,35,68,.14);
  --ptc-shadow: 0 18px 48px rgba(13,35,68,.12);
  --ptc-shadow-hover: 0 22px 60px rgba(13,35,68,.18);

  --ptc-radius: 18px;
  --ptc-radius-lg: 22px;

  --ptc-gap: 18px;

  background: var(--ptc-bg);
  padding: 64px 0;
}

.pt-locations-wrap.theme-dark{
  --ptc-bg: #16283b;
  --ptc-card: rgba(255,255,255,.06);
  --ptc-border: rgba(255,255,255,.14);
  --ptc-shadow: 0 18px 48px rgba(0,0,0,.35);
  --ptc-shadow-hover: 0 22px 60px rgba(0,0,0,.45);

  --ptc-ink: #ffffff;
  --ptc-muted: rgba(255,255,255,.74);
}


.pt-locations__title{
  font-family: "Oddlini", serif;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ptc-ink);
  margin: 0 0 12px 0;
  font-size: 28px;
  line-height: 1.15;
}

.pt-locations__lead{
  font-family: "Garamond", serif;
  color: var(--ptc-muted);
  margin: 0 0 26px 0;
  font-size: 19px;
  line-height: 1.6;
}

/* List wrapper */
.pt-locations__list{
  display: grid;
  gap: var(--ptc-gap);
}

/* =====================================================
   CARD – layout
===================================================== */

.pt-location-card{
  background: var(--ptc-card);
  border: 1px solid var(--ptc-border);
  border-radius: var(--ptc-radius-lg);
  overflow: hidden;
  box-shadow: var(--ptc-shadow);

  /* hover lift */
  transform: translateY(0);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

/* subtle lift */
.pt-location-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--ptc-shadow-hover);
  border-color: rgba(13,35,68,.22);
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  .pt-location-card{
    transition: none;
  }
  .pt-location-card:hover{
    transform: none;
  }
}

/* inner layout – mobile: stack */
.pt-location-card{
  display: grid;
  grid-template-columns: 1fr;
}

/* content area */
.pt-location-card__content{
  padding: 18px 18px 16px 18px;
}

/* Title */
.pt-location-card__title{
font-family: "Oddlini", serif;
  font-size: 24px;
  font-weight: 500;
  margin: 16px 0 22px;
  color: var(--ptc-ink);
}

/* Address */
.pt-location-card__address{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 14px 0;
  color: var(--ptc-muted);
  font-family: "Garamond", serif;
font-size: 24px;
  line-height: 1;
}

/* rows */
.pt-location-card__row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: var(--ptc-muted);
  font-family: "Garamond", serif;
font-size: 24px;
  line-height: 1;
}

.pt-location-card__row a{
  color: var(--ptc-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(13,35,68,.22);
  transition: border-color .18s ease, opacity .18s ease;
}
.pt-location-card__row a:hover{
  border-color: rgba(13,35,68,.55);
  opacity: .95;
}

/* hours list */
.pt-location-card__hours{
  list-style: none;
  padding: 0;
  margin: 0;

}
.pt-location-card__hours li{
  margin: 0 0 4px 0;
}
.pt-location-card__hours li:last-child{
  margin-bottom: 0;
}

/* custom contacts list */
.pt-location-card__custom{
  list-style: none;
  padding: 0;
  margin: 30px 0 25px 0;
  display: grid;
  gap: 6px;
  color: var(--ptc-muted);
  font-family: "Oddlini", serif;
font-size: 18px;
  line-height: 1.6;
}
.pt-location-card__custom strong{
  color: var(--ptc-ink);
  font-weight: 600;
}

/* icons */
.pt-ico{
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--ptc-navy);
  opacity: .92;
}
.pt-locations-wrap.theme-dark .pt-ico{
  color: rgba(255,255,255,.85);
}

/* =====================================================
   MAP – per location
===================================================== */
.pt-location-card__map{
  border-top: 1px solid var(--ptc-border);
  background: rgba(0,0,0,.02);
  position: relative;
}

/* keep map tidy */
.pt-location-card__map iframe{
  width: 100% !important;
  height: 260px !important;
  display: block;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

/* =====================================================
   CONVERSION – Booksy + secondary CTA
===================================================== */

.pt-location-card__booking{
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ptc-navy-2);
  color: #fff;
  text-decoration: none;

  font-family: "Oddlini", serif;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .02em;

  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 26px rgba(47,68,93,.18);
}

.pt-location-card__booking:hover{
  transform: translateY(-1px);
  background: var(--ptc-navy);
  box-shadow: 0 14px 34px rgba(47,68,93,.24);
}

/* Stronger conversion emphasis on mobile */
@media (max-width: 480px){
  .pt-location-card__booking{
    width: 100%;
    padding: 13px 18px;
    font-size: 16px;
  }
}

/* =====================================================
   RESPONSIVE – desktop split: content + map
===================================================== */
@media (min-width: 768px){
  .pt-locations-wrap{
    padding: 86px 0;
    --ptc-gap: 22px;
  }

  .pt-locations__title{
    font-size: 34px;
  }
  .pt-locations__lead{
    font-size: 22px;
    max-width: 78ch;
  }

  .pt-location-card{
    grid-template-columns: 1.05fr .95fr;
  }

  .pt-location-card__content{
    padding: 22px 22px 20px 22px;
  }

  .pt-location-card__map{
    border-top: 0;
    border-left: 1px solid var(--ptc-border);
  }

  .pt-location-card__map iframe{
    height: 100% !important;
    min-height: 320px;
  }
}

@media (min-width: 1024px){
  .pt-locations__title{
    font-size: 38px;
  }
  .pt-location-card__title{
    font-size: 24px;
  }
}


