/* Service page additions */

.service-hero .hero-place {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 18px;
}
.service-hero .hero-content { padding: 180px clamp(24px, 6vw, 88px) 96px; }

.breadcrumb {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  font-size: 14px;
  color: var(--ink-2);
}
.breadcrumb .container { display: flex; gap: 10px; align-items: center; }
.breadcrumb a { color: var(--ink-2); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

.service-intro {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}
.service-aside {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.service-aside h3 { margin: 0 0 14px; }
.service-aside ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}
.service-aside li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-2);
}
.service-aside li::before {
  content: "•";
  color: var(--teal);
  position: absolute;
  left: 6px;
  top: 0;
}
.muted { color: var(--muted); font-size: 14px; margin: 0; }

.vaccine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vaccine {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: grid;
  gap: 4px;
}
.vaccine strong { font-weight: 500; color: var(--ink); }
.vaccine span { color: var(--ink-2); font-size: 14px; }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.steps h3 { margin: 0 0 6px; font-size: 17px; }
.steps p { color: var(--ink-2); margin: 0; font-size: 14px; }

.faqs { display: grid; gap: 12px; }
.faqs details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.faqs summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faqs summary::after {
  content: "+";
  color: var(--teal);
  font-size: 22px;
  line-height: 1;
}
.faqs details[open] summary::after { content: "−"; }
.faqs details[open] { border-color: var(--teal); }
.faqs p { margin: 12px 0 0; color: var(--ink-2); }

.service-cta-inner {
  background: var(--teal-50);
  border-radius: var(--radius);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.service-cta-inner h2 { margin: 0 0 8px; }
.service-cta-inner p { margin: 0; color: var(--ink-2); }

@media (max-width: 960px) {
  .service-intro { grid-template-columns: 1fr; gap: 32px; }
  .vaccine-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .vaccine-grid, .steps { grid-template-columns: 1fr; }
  .service-cta-inner { padding: 28px; }
}

/* Service-intro media (alternating image/text rows) */
.service-intro__media img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-intro--reverse > div:first-child { order: 1; }
.service-intro--reverse > div:last-child { order: 2; }

/* Hero notes (small lines under the lede) */
.hero-note {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 8px;
  max-width: 60ch;
}
.hero-note--muted { color: rgba(255,255,255,0.7); font-size: 13px; }
.hero-postal {
  font-style: normal;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
  margin: 0 0 18px;
}
.hero-note + .hero-cta, .hero-note--muted + .hero-cta { margin-top: 18px; }

/* Inline banner section */
.band {
  background: var(--bg-alt);
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band__eyebrow { margin-bottom: 14px; }
.band__lede {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* Test grid (Blood Testing) */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.test-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line, #e5e7eb);
  border-radius: var(--radius);
  padding: 20px;
}
.test-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
}
.test-card p {
  color: var(--ink-2);
  font-size: 14px;
  margin: 0 0 12px;
}
.test-card .service-link { margin-top: auto; }

@media (max-width: 960px) {
  .service-intro--reverse > div:first-child,
  .service-intro--reverse > div:last-child { order: 0; }

  .tests-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: thin;
  }
  .tests-grid .test-card {
    flex: 0 0 78%;
    max-width: 320px;
    scroll-snap-align: start;
  }
}

@media (max-width: 600px) {
  .band { padding: 40px 0; }
  .band__lede { font-size: 16px; }
  .tests-grid .test-card { flex-basis: 85%; }
}
