/* Plugin-specific styles (supplements theme styles) */
.fan-consultation-form .fan-form-group { margin-bottom: 12px; }
.fan-consultation-form input,
.fan-consultation-form select,
.fan-consultation-form textarea {
  height: 40px; font-size: 14px;
}
.fan-consultation-form textarea { height: auto; }

/* ------------------------------------------------------------------
   v1.1.9 — Blue brand color overrides (replaces previous teal/green)
   ------------------------------------------------------------------ */

/* Active / hover tab indicator on clinic profile tabs */
.fan-profile-tabs a.active,
.fan-profile-tabs a[aria-selected="true"] {
  color: #2563eb !important;
  border-bottom-color: #2563eb !important;
  box-shadow: inset 0 -2px 0 0 #2563eb;
}
.fan-profile-tabs a:hover { color: #1d4ed8 !important; }

/* Primary button (consultation, search, header CTAs) */
.fan-btn.fan-btn--primary,
.fan-clinic-profile .fan-btn--primary {
  background: #2563eb !important;
  border-color: #2563eb !important;
  color: #ffffff !important;
}
.fan-btn.fan-btn--primary:hover,
.fan-clinic-profile .fan-btn--primary:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
}

/* Consultation form submit button (in case theme overrides inline style) */
.fan-consultation-form button[type="submit"] {
  background: #2563eb !important;
  border-color: #2563eb !important;
  color: #ffffff !important;
}
.fan-consultation-form button[type="submit"]:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
}

/* Related clinics — circular logo avatar */
.fan-related-clinic-card > div:first-child {
  border-radius: 50% !important;
}
.fan-related-clinic-card > div:first-child img {
  border-radius: 50% !important;
  object-fit: cover !important;
}

/* ------------------------------------------------------------------
   v1.2.0 — Compact single-clinic banner / hero
   Reduces hero height for a more balanced, professional look while
   maintaining responsiveness across all screen sizes.
   ------------------------------------------------------------------ */
.fan-clinic-profile .fan-profile-hero.fan-profile-hero--compact {
  height: 200px !important;
  min-height: 200px !important;
  max-height: 200px !important;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .fan-clinic-profile .fan-profile-hero.fan-profile-hero--compact {
    height: 170px !important;
    min-height: 170px !important;
    max-height: 170px !important;
  }
}
@media (max-width: 640px) {
  .fan-clinic-profile .fan-profile-hero.fan-profile-hero--compact {
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
  }
}
.fan-clinic-profile .fan-profile-hero.fan-profile-hero--compact .fan-profile-hero__initial {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

