/* ================================================================
   Clinic info — Clinic Information card (address/phone/hours rows)
================================================================ */
.clinic-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}

.clinic-head {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 650;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.clinic-head svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child {
  border-bottom: none;
}

.info-icon {
  color: var(--teal);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-label {
  display: block;
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.info-value {
  display: block;
  font-size: 14.5px;
  color: var(--text-primary);
  line-height: 1.45;
}

a.info-value {
  color: var(--teal);
  font-weight: 600;
}

a.info-value:hover {
  text-decoration: underline;
}

/* Branch sub-cards — one per clinic location */
.clinic-branch {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  padding: 4px 14px 12px;
  margin-top: 14px;
}

.clinic-branch:first-of-type {
  margin-top: 12px;
}

.branch-head {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 12px 0 0;
}

.branch-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  border-radius: 4px;
  background: var(--teal);
}

.clinic-branch .info-row:first-of-type {
  margin-top: 2px;
}

.maps-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  background: var(--grad-cta);
  color: var(--white);
  border: none;
  font-size: 14px;
  font-weight: 650;
  box-shadow: 0 8px 18px -8px var(--blue-30);
  transition: background-color 120ms ease, filter 120ms ease;
}

.maps-btn:hover {
  background: var(--grad-cta);
  filter: brightness(1.06);
}

.maps-btn svg {
  width: 17px;
  height: 17px;
}