/* ==========================================================================
   MyHospitalNow Hospitals — Global Theme (v2)
   Spec: docs/design-system.md  |  Implements: PROMPT 06
   Bootstrap 4 + jQuery friendly. No build step. Additive — safe to load
   alongside existing CSS. All classes are namespaced `.mhn-*`.
   ========================================================================== */

/* ------------------------------------------------------------------ Tokens */
:root {
  /* Brand — canonical primary unifies #3097D1 / #2d99ca / #227EA9 / #0ea5e9 */
  --mhn-primary:      #227EA9;
  --mhn-primary-dark: #1b6488;
  --mhn-primary-soft: #e8f2f7;
  --mhn-secondary:    #2563eb;
  --mhn-accent:       #14b8a6;

  /* Surfaces */
  --mhn-bg:           #f6f8fb;
  --mhn-surface:      #ffffff;
  --mhn-surface-soft: #f1f5f9;

  /* Text */
  --mhn-text:         #0f172a;
  --mhn-muted:        #64748b;
  --mhn-border:       #e6ebf2;

  /* Status */
  --mhn-success:      #16a34a;
  --mhn-warning:      #f59e0b;
  --mhn-danger:       #dc2626;
  --mhn-info:         #0ea5e9;
  --mhn-success-soft: #e7f6ec;
  --mhn-warning-soft: #fef3e2;
  --mhn-danger-soft:  #fdeaea;
  --mhn-info-soft:    #e6f5fd;

  /* Shape */
  --mhn-radius-sm:    8px;
  --mhn-radius:       12px;
  --mhn-radius-lg:    16px;
  --mhn-shadow-sm:    0 1px 2px rgba(15,23,42,.06);
  --mhn-shadow:       0 10px 25px rgba(15,23,42,.08);
  --mhn-shadow-lg:    0 18px 45px rgba(2,6,23,.10);

  /* Type */
  --mhn-font: "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Backward-compat aliases (old blades used these names) */
  --mhn-ink:  var(--mhn-text);
  --mhn-line: var(--mhn-border);
  --mhn-card: var(--mhn-surface);
  --mhn-soft: var(--mhn-bg);
}

/* --------------------------------------------------------------- Buttons */
.mhn-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: 40px; padding: 0 16px; font-family: var(--mhn-font); font-size: 15px;
  font-weight: 600; line-height: 1; border: 1px solid transparent;
  border-radius: var(--mhn-radius-sm); cursor: pointer; text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
  -webkit-appearance: none; appearance: none;
}
.mhn-btn:focus-visible { outline: 2px solid var(--mhn-primary); outline-offset: 2px; }
.mhn-btn-sm { height: 32px; padding: 0 12px; font-size: 13px; }
.mhn-btn-lg { height: 48px; padding: 0 22px; font-size: 16px; }
.mhn-btn[disabled], .mhn-btn.is-disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }

.mhn-btn-primary   { background: var(--mhn-primary); color: #fff; border-color: var(--mhn-primary); }
.mhn-btn-primary:hover { background: var(--mhn-primary-dark); border-color: var(--mhn-primary-dark); color: #fff; }
.mhn-btn-secondary { background: #fff; color: var(--mhn-primary); border-color: var(--mhn-primary); }
.mhn-btn-secondary:hover { background: var(--mhn-primary-soft); color: var(--mhn-primary-dark); }
.mhn-btn-ghost     { background: transparent; color: var(--mhn-muted); }
.mhn-btn-ghost:hover { background: var(--mhn-surface-soft); color: var(--mhn-text); }
.mhn-btn-danger    { background: var(--mhn-danger); color: #fff; border-color: var(--mhn-danger); }
.mhn-btn-danger:hover { background: #b91c1c; border-color: #b91c1c; color: #fff; }
.mhn-btn-block { display: flex; width: 100%; }

/* ----------------------------------------------------------------- Cards */
.mhn-card {
  background: var(--mhn-surface); border: 1px solid var(--mhn-border);
  border-radius: var(--mhn-radius); box-shadow: var(--mhn-shadow-sm);
  transition: box-shadow .15s ease;
}
.mhn-card--hover:hover { box-shadow: var(--mhn-shadow); }
.mhn-card__header { padding: 16px 20px; border-bottom: 1px solid var(--mhn-border); font-weight: 600; color: var(--mhn-text); }
.mhn-card__body   { padding: 20px; color: var(--mhn-text); }
.mhn-card__footer { padding: 14px 20px; border-top: 1px solid var(--mhn-border); }

/* --------------------------------------------------------- Badges / pills */
.mhn-badge {
  display: inline-flex; align-items: center; gap: .35rem; padding: 3px 10px;
  font-size: 12px; font-weight: 600; line-height: 1.4; border-radius: 999px;
  background: var(--mhn-surface-soft); color: var(--mhn-muted);
}
.mhn-badge-success { background: var(--mhn-success-soft); color: var(--mhn-success); }
.mhn-badge-warning { background: var(--mhn-warning-soft); color: #b45309; }
.mhn-badge-danger  { background: var(--mhn-danger-soft);  color: var(--mhn-danger); }
.mhn-badge-info    { background: var(--mhn-info-soft);    color: #0369a1; }
.mhn-status-pill   { display: inline-flex; align-items: center; gap: .4rem; font-size: 13px; font-weight: 600; }
.mhn-status-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* --------------------------------------------------------------- Alerts */
.mhn-alert {
  display: flex; gap: .6rem; padding: 12px 16px; border-radius: var(--mhn-radius-sm);
  border: 1px solid var(--mhn-border); background: var(--mhn-surface-soft);
  color: var(--mhn-text); font-size: 14px;
}
.mhn-alert-success { background: var(--mhn-success-soft); border-color: #bbe7c7; color: #14532d; }
.mhn-alert-warning { background: var(--mhn-warning-soft); border-color: #f6d9a6; color: #7c2d12; }
.mhn-alert-danger  { background: var(--mhn-danger-soft);  border-color: #f4c2c2; color: #7f1d1d; }
.mhn-alert-info    { background: var(--mhn-info-soft);    border-color: #b6e3f8; color: #075985; }

/* ---------------------------------------------------------- Form fields */
.mhn-form-field { margin-bottom: 16px; }
.mhn-label { display: block; margin-bottom: 6px; font-size: 14px; font-weight: 600; color: var(--mhn-text); }
.mhn-label .mhn-req { color: var(--mhn-danger); }
.mhn-form-control {
  display: block; width: 100%; height: 42px; padding: 8px 12px; font-family: var(--mhn-font);
  font-size: 15px; color: var(--mhn-text); background: #fff; border: 1px solid var(--mhn-border);
  border-radius: var(--mhn-radius-sm); transition: border-color .15s ease, box-shadow .15s ease;
}
textarea.mhn-form-control { height: auto; min-height: 96px; resize: vertical; }
.mhn-form-control::placeholder { color: #94a3b8; }
.mhn-form-control:focus { outline: none; border-color: var(--mhn-primary); box-shadow: 0 0 0 3px var(--mhn-primary-soft); }
.mhn-form-control.is-invalid { border-color: var(--mhn-danger); }
.mhn-field-error { margin-top: 6px; font-size: 13px; color: var(--mhn-danger); }
.mhn-field-hint  { margin-top: 6px; font-size: 13px; color: var(--mhn-muted); }

/* ------------------------------------------------------- Breadcrumb */
.mhn-breadcrumb { display: flex; flex-wrap: wrap; gap: .35rem; align-items: center; font-size: 13px; color: var(--mhn-muted); padding: 0; margin: 0 0 12px; list-style: none; }
.mhn-breadcrumb a { color: var(--mhn-muted); text-decoration: none; }
.mhn-breadcrumb a:hover { color: var(--mhn-primary); }
.mhn-breadcrumb .sep { color: #cbd5e1; }
.mhn-breadcrumb [aria-current="page"] { color: var(--mhn-text); font-weight: 600; }

/* --------------------------------------------------- Empty / loading */
.mhn-empty-state { text-align: center; padding: 40px 20px; color: var(--mhn-muted); }
.mhn-empty-state__icon { font-size: 34px; margin-bottom: 10px; color: #cbd5e1; }
.mhn-empty-state__title { font-size: 16px; font-weight: 600; color: var(--mhn-text); margin-bottom: 6px; }
.mhn-empty-state__text { font-size: 14px; margin-bottom: 16px; }

.mhn-loading { display: inline-flex; align-items: center; gap: .5rem; color: var(--mhn-muted); font-size: 14px; }
.mhn-spinner { width: 18px; height: 18px; border: 2px solid var(--mhn-border); border-top-color: var(--mhn-primary); border-radius: 50%; animation: mhn-spin .7s linear infinite; }
.mhn-skeleton { background: linear-gradient(90deg, #eef2f7 25%, #e2e8f0 37%, #eef2f7 63%); background-size: 400% 100%; animation: mhn-shimmer 1.4s ease infinite; border-radius: var(--mhn-radius-sm); }
.mhn-skeleton--line { height: 12px; margin: 8px 0; }
@keyframes mhn-spin { to { transform: rotate(360deg); } }
@keyframes mhn-shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ----------------------------------------------------- Listing toolbar */
.mhn-listing-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; padding: 12px 0; }
.mhn-listing-toolbar .mhn-count { margin-left: auto; font-size: 14px; color: var(--mhn-muted); }
.mhn-active-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.mhn-active-filters .mhn-chip { display: inline-flex; align-items: center; gap: .4rem; padding: 4px 10px; font-size: 13px; background: var(--mhn-primary-soft); color: var(--mhn-primary-dark); border-radius: 999px; }
.mhn-active-filters .mhn-chip button { border: 0; background: none; color: inherit; cursor: pointer; line-height: 1; }

/* --------------------------------------------------------- Modal skin */
.mhn-modal .modal-content { border: 0; border-radius: var(--mhn-radius); box-shadow: var(--mhn-shadow-lg); }
.mhn-modal .modal-header { border-bottom: 1px solid var(--mhn-border); }
.mhn-modal .modal-footer { border-top: 1px solid var(--mhn-border); }
.mhn-modal .modal-title { font-weight: 600; color: var(--mhn-text); }

/* --------------------------------------------------- Dashboard shell */
.mhn-dashboard-shell { background: var(--mhn-bg); min-height: 100vh; }
.mhn-page-title { font-size: 26px; font-weight: 700; color: var(--mhn-text); margin: 0 0 4px; }
.mhn-page-desc  { font-size: 15px; color: var(--mhn-muted); margin: 0 0 16px; }

/* ---------------------------------------------------- Filter drawer (mobile) */
.mhn-filter-drawer { position: fixed; inset: 0 0 0 auto; width: min(88vw, 340px); background: #fff; box-shadow: var(--mhn-shadow-lg); transform: translateX(100%); transition: transform .2s ease; z-index: 1050; overflow-y: auto; }
.mhn-filter-drawer.is-open { transform: translateX(0); }
.mhn-filter-backdrop { position: fixed; inset: 0; background: rgba(15,23,42,.4); opacity: 0; visibility: hidden; transition: opacity .2s ease; z-index: 1040; }
.mhn-filter-backdrop.is-open { opacity: 1; visibility: visible; }

/* ------------------------------------------------------------- Helpers */
.mhn-stack > * + * { margin-top: 12px; }
.mhn-muted { color: var(--mhn-muted); }
.mhn-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  .mhn-spinner, .mhn-skeleton, .mhn-filter-drawer, .mhn-filter-backdrop { animation: none !important; transition: none !important; }
}

/* ---------------------------------------------------- Hospital card (public listing) */
.mhn-hcard { display: flex; flex-direction: column; gap: 12px; padding: 16px; }
.mhn-hcard__top { display: flex; gap: 12px; align-items: flex-start; }
.mhn-hcard__logo { flex: 0 0 56px; width: 56px; height: 56px; border-radius: 10px; object-fit: cover; background: var(--mhn-surface-soft); border: 1px solid var(--mhn-border); }
.mhn-hcard__logo-tile { display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 22px; color: var(--mhn-primary); }
.mhn-hcard__title { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.mhn-hcard__name { font-size: 17px; font-weight: 600; color: var(--mhn-text); text-decoration: none; }
.mhn-hcard__name:hover { color: var(--mhn-primary); }
.mhn-hcard__loc { font-size: 13px; color: var(--mhn-muted); margin-top: 2px; }
.mhn-hcard__stats { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--mhn-text); }
.mhn-hcard__stats i { color: var(--mhn-primary); margin-right: 4px; }
.mhn-hcard__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.mhn-hcard__spec { font-size: 13px; color: var(--mhn-muted); }
.mhn-hcard__actions { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; border-top: 1px solid var(--mhn-border); }
.mhn-hcard__actions .mhn-btn { flex: 1 1 auto; }

/* SEO block under a listing */
.mhn-seo-block { margin-top: 28px; padding: 20px; background: var(--mhn-surface); border: 1px solid var(--mhn-border); border-radius: var(--mhn-radius); color: var(--mhn-muted); font-size: 14px; line-height: 1.6; }
.mhn-seo-block h2 { font-size: 18px; color: var(--mhn-text); margin: 0 0 8px; }

/* ---------------------------------------------------- Hospital profile (public) */
.mhn-profile-header { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; padding: 20px; }
.mhn-profile-header__main { display: flex; gap: 16px; align-items: center; min-width: 0; }
.mhn-profile-header__logo { flex: 0 0 72px; width: 72px; height: 72px; border-radius: 12px; object-fit: cover; background: var(--mhn-surface-soft); border: 1px solid var(--mhn-border); }
.mhn-profile-header__logo-tile { display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 28px; color: var(--mhn-primary); }
.mhn-profile-header__name { font-size: 24px; font-weight: 700; color: var(--mhn-text); margin: 0; }
.mhn-profile-header__loc { font-size: 14px; color: var(--mhn-muted); margin-top: 4px; }
.mhn-profile-header__badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.mhn-profile-cta { display: flex; flex-wrap: wrap; gap: 8px; }

.mhn-profile-section { padding: 20px; margin-bottom: 16px; }
.mhn-profile-section__title { font-size: 20px; font-weight: 600; color: var(--mhn-text); margin: 0 0 12px; }
.mhn-profile-section__body { color: var(--mhn-text); line-height: 1.65; }
.mhn-profile-section__body img { max-width: 100%; height: auto; }

.mhn-trust-panel { padding: 18px; }
.mhn-trust-panel__title { font-size: 16px; font-weight: 600; color: var(--mhn-text); margin: 0 0 12px; }
.mhn-trust-row { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-top: 1px solid var(--mhn-border); font-size: 14px; color: var(--mhn-text); }
.mhn-trust-row:first-of-type { border-top: 0; }
.mhn-trust-row i { color: var(--mhn-primary); width: 18px; text-align: center; }
.mhn-trust-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 0; }
@media (min-width: 992px) { .mhn-trust-panel--sticky { position: sticky; top: 84px; } }

.mhn-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.mhn-gallery-grid img { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; border: 1px solid var(--mhn-border); }

.mhn-profile-disclaimer { margin: 24px 0 8px; font-size: 13px; line-height: 1.6; }

/* ---------------------------------------------------- Profile completion card (dashboard) */
.mhn-completion-score { font-size: 28px; font-weight: 700; color: var(--mhn-primary); line-height: 1; }
.mhn-progress { height: 8px; background: var(--mhn-surface-soft); border-radius: 999px; overflow: hidden; margin: 12px 0 16px; }
.mhn-progress__bar { height: 100%; background: var(--mhn-primary); border-radius: 999px; transition: width .3s ease; }
.mhn-next-action { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--mhn-primary-soft); border-radius: var(--mhn-radius-sm); margin-bottom: 14px; font-size: 14px; }
.mhn-next-action button { margin-left: auto; white-space: nowrap; }
/* Checklist: completed items as compact 2-column chips; the incomplete
   (actionable) items span full width and stand out so they draw the eye. */
.mhn-completion-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 18px; }
.mhn-completion-list li { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; font-size: 14px; color: var(--mhn-text); background: var(--mhn-surface-soft); border: 1px solid transparent; }
.mhn-completion-list li.is-todo { grid-column: 1 / -1; background: var(--mhn-warning-soft); border-color: #f3d9a8; font-weight: 600; }
.mhn-completion-list li .mhn-ci-done { color: var(--mhn-success); font-size: 15px; }
.mhn-completion-list li .mhn-ci-todo { color: var(--mhn-warning); font-size: 13px; }
.mhn-completion-list li button { margin-left: auto; white-space: nowrap; }
@media (max-width: 575.98px) { .mhn-completion-list { grid-template-columns: 1fr; } }

/* ---------------------------------------------------- Dashboard home cards */
.mhn-metric { display: flex; align-items: center; gap: 14px; padding: 16px; }
.mhn-metric__icon { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--mhn-primary-soft); color: var(--mhn-primary); font-size: 18px; }
.mhn-metric__value { font-size: 24px; font-weight: 700; color: var(--mhn-text); line-height: 1; }
.mhn-metric__label { font-size: 13px; color: var(--mhn-muted); margin-top: 3px; }
.mhn-metric__hint { font-size: 12px; color: var(--mhn-muted); }
.mhn-action-card { padding: 16px; }
.mhn-action-card__title { font-weight: 600; color: var(--mhn-text); }
.mhn-action-card__text { font-size: 14px; color: var(--mhn-muted); margin: 4px 0 10px; }
.mhn-recent { list-style: none; padding: 0; margin: 0; }
.mhn-recent li { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--mhn-border); font-size: 14px; color: var(--mhn-text); }
.mhn-recent li:first-child { border-top: 0; }
.mhn-recent li i { color: var(--mhn-primary); margin-top: 2px; }
.mhn-recent__time { margin-left: auto; font-size: 12px; color: var(--mhn-muted); white-space: nowrap; }
.mhn-plan { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px; }
.mhn-plan__name { font-size: 18px; font-weight: 700; color: var(--mhn-text); }
.mhn-welcome { font-size: 22px; font-weight: 700; color: var(--mhn-text); margin: 0 0 2px; }
.mhn-welcome-sub { color: var(--mhn-muted); margin: 0 0 16px; }

/* ---------------------------------------------------- Premium / lock */
.mhn-lock-card { text-align: center; padding: 28px 20px; }
.mhn-lock-card__icon { width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--mhn-warning-soft); color: var(--mhn-warning); font-size: 22px; }
.mhn-lock-card h3 { font-size: 18px; font-weight: 600; color: var(--mhn-text); margin: 0 0 6px; }
.mhn-lock-card p { color: var(--mhn-muted); font-size: 14px; margin: 0 0 14px; }
.mhn-upgrade-banner { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: var(--mhn-radius); background: linear-gradient(135deg, var(--mhn-primary-soft), #fff); border: 1px solid var(--mhn-border); }
.mhn-upgrade-banner > i { color: var(--mhn-warning); font-size: 20px; }
.mhn-upgrade-banner .mhn-btn { margin-left: auto; white-space: nowrap; }
.mhn-plan-status { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 16px; }
.mhn-plan-status__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }

/* ---------------------------------------------------- Notification preferences */
.mhn-notif-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-top: 1px solid var(--mhn-border); font-size: 14px; color: var(--mhn-text); }
.mhn-notif-row:first-of-type { border-top: 0; }
.mhn-notif-row input[type="checkbox"] { width: 18px; height: 18px; }

/* ==========================================================================
   v2 GLOBAL POLISH (site-wide). Loaded on both layouts (home + app), so these
   lift the shared surfaces — app-download promo, store badges, section rhythm —
   on every public + dashboard page at once. Additive; targets existing ids/
   classes only. See docs/design-system.md.
   ========================================================================== */

/* ---- App-download promo (home / geo / profile share `#app_download`) ---- */
#app_download { padding: 24px 0 32px; }
#app_download h1 {
  font-size: 26px; font-weight: 800; color: var(--mhn-text);
  margin-bottom: 22px; line-height: 1.3;
}
#app_download h1 i { color: var(--mhn-primary); }
.mhn-install { padding: 18px 16px; height: 100%; }
.mhn-install > p strong, .mhn-install p:first-child strong {
  display: block; margin-bottom: 12px; font-size: 16px; font-weight: 700;
  color: var(--mhn-primary-dark);
}
.mhn-install ul { margin: 0 0 16px; }
.mhn-install ul li {
  padding: 5px 0; font-size: 14px; color: var(--mhn-text);
  list-style: none;
}
/* Store badges had NO size cap → 270×80 assets overflowed their column and
   collided with the following block (the disclaimer overlap on the profile
   page). Constrain to a tidy button size everywhere. */
#app_download img#playstore, #app_download img#appstore,
#app_download img[alt="Google Play"], #app_download img[alt="App Store"] {
  height: 44px; width: auto; margin: 6px 4px 0;
  border-radius: 8px; display: inline-block; vertical-align: middle;
}
/* Give the whole promo a soft card so it reads as one unit, and guarantee it
   clears whatever follows it (kills the disclaimer overlap for good). */
#app_download > .row, #app_download .container > .row {
  background: var(--mhn-surface); border: 1px solid var(--mhn-border);
  border-radius: var(--mhn-radius-lg); box-shadow: var(--mhn-shadow-sm);
  padding: 12px; margin-left: 0; margin-right: 0; overflow: hidden;
}
/* Disclaimer must sit clearly below the promo, never on top of it. */
.mhn-profile-disclaimer { margin-top: 28px !important; position: relative; z-index: 1; }

/* ---- Public navbar link polish (layouts/home) ---- */
.navbar-light .navbar-nav .nav-link { font-weight: 600; transition: color .15s ease; }

/* ---- "What our users say" testimonial + doctor-card sections: even rhythm --- */
#app_download + section, section + #app_download { margin-top: 8px; }

/* ---- Premium sidebar ("Top Premium Hospitals") — doctor-style teal banner.
   Overrides the per-page inline copies (home / profile / country / state / city /
   404) so every "Top Premium" sidebar matches. Star + subtitle come from CSS so no
   per-page markup change is needed. ---- */
.mhn-sidecard__head {
  padding: 16px !important;
  display: block !important;
  text-align: center !important;
  border-bottom: 0 !important;
  background: linear-gradient(135deg, #227EA9 0%, #14b8a6 100%) !important;
}
.mhn-sidecard__title {
  margin: 0 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #fff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mhn-sidecard__title::before {
  content: "\f005"; /* fa-star */
  font-family: FontAwesome, "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 13px;
}
.mhn-sidecard__head::after {
  content: "Verified profiles • Faster quotes";
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
}
/* hide any per-page markup subtitle so it isn't doubled with the ::after */
.mhn-sidecard__sub { display: none !important; }

.mhn-hospital-cta {
  background: #227EA9 !important;
  color: #fff !important;
  border: 1px solid transparent !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 14px rgba(34, 126, 169, .22) !important;
}
.mhn-hospital-cta:hover {
  background: #1b6488 !important;
  color: #fff !important;
}
