@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,400;0,600;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1b5e3b;
  --primary-dark: #0d3d25;
  --primary-mid: #256b47;
  --primary-light: #e6f4ee;
  --accent: #c0392b;
  --accent-light: #fdf2f1;
  --gold: #c9922a;
  --text: #1a1a1a;
  --text-mid: #3d3d3d;
  --text-light: #666;
  --text-muted: #999;
  --border: #e4e9ef;
  --border-light: #f0f4f7;
  --bg: #ffffff;
  --bg-off: #f7f9fb;
  --bg-warm: #fafaf8;
  --shadow-xs: 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow: 0 4px 20px rgba(0,0,0,.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --radius: 10px;
  --radius-sm: 6px;
  --max-w: 1180px;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; box-sizing: border-box; }

/* READING PROGRESS */
#readingProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary), #2ecc71);
  z-index: 2000; transition: width .1s linear; pointer-events: none;
}

/* ========================
   HEADER
======================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px; gap: 16px;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 1.08rem; font-weight: 700;
  color: var(--primary-dark); text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px; background: var(--primary); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; flex-shrink: 0;
}
.logo-text em { color: var(--accent); font-style: normal; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 7px 12px; border-radius: 7px;
  font-size: .84rem; font-weight: 500; color: var(--text-mid);
  transition: all .2s; white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: var(--primary-light); color: var(--primary); }
.nav-cta { background: var(--primary) !important; color: #fff !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--primary-dark) !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none; position: fixed; top: 62px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 10px 20px 18px; z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0; border-bottom: 1px solid var(--border-light);
  font-size: .95rem; font-weight: 500; color: var(--text);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--primary); }

/* ========================
   BREADCRUMB
======================== */
.breadcrumb { background: var(--bg-off); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb .container { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; font-size: .77rem; color: var(--text-light); }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span.sep { color: var(--text-muted); }

/* ========================
   LAYOUT SYSTEM
======================== */
.container { max-width: var(--max-w); width: 100%; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-alt { background: var(--bg-off); }
.section-warm { background: var(--bg-warm); }

/* ========================
   ARTICLE LAYOUT (2-col grid)
======================== */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  padding: 44px 0;
  align-items: start;
  width: 100%;
}
.article-main { min-width: 0; }
.article-sidebar { min-width: 0; }

/* ========================
   HERO BAND (hospital/city/state)
======================== */
.page-hero-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff; padding: 44px 0 36px;
}
.page-hero-band h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 10px; letter-spacing: -.4px;
}
.page-hero-band p { color: rgba(255,255,255,.72); font-size: .95rem; max-width: 640px; }
.hero-label {
  font-size: .68rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 8px;
}
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.hero-badge {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8); padding: 4px 12px; border-radius: 20px;
  font-size: .72rem; font-weight: 600;
}
.hero-badge.green { background: rgba(46,204,113,.15); border-color: rgba(46,204,113,.35); color: #7dde9e; }
.hero-badge.red { background: rgba(192,57,43,.2); border-color: rgba(192,57,43,.4); color: #f5a9a1; }

/* ========================
   METRICS STRIP
======================== */
.metrics-strip { background: #fff; border-bottom: 1px solid var(--border); }
.metrics-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-left: 1px solid var(--border);
}
.metric-cell {
  padding: 14px 12px; text-align: center;
  border-right: 1px solid var(--border);
}
.metric-val {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--text);
}
.metric-lbl { font-size: .61rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px; margin-top: 2px; }

/* ========================
   SAFETY SCORE BADGE
======================== */
.score-badge {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 22px 28px; text-align: center; min-width: 140px;
}
.score-num {
  font-family: var(--font-serif); font-size: 2.8rem; font-weight: 900; line-height: 1;
  color: #fff; margin-bottom: 2px;
}
.score-grade {
  font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: 1px;
}
.score-sub { font-size: .65rem; color: rgba(255,255,255,.4); margin-top: 6px; }

/* Grade colors */
.grade-a { color: #27ae60; }
.grade-b { color: #2980b9; }
.grade-c { color: #d4a017; }
.grade-d { color: #e67e22; }
.grade-f { color: #c0392b; }

/* ========================
   TYPOGRAPHY
======================== */
.section-label {
  font-size: .68rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.28;
}
.section-sub { color: var(--text-light); font-size: .92rem; max-width: 540px; line-height: 1.65; }

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 22px; border-radius: 8px; font-size: .88rem; font-weight: 600;
  transition: all .2s; border: 2px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary-dark); border-color: #fff; }
.btn-white:hover { background: var(--primary-light); color: var(--primary-dark); }

/* ========================
   ARTICLE CONTENT STYLES
======================== */
.article-cat {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 4px; margin-bottom: 12px;
}
.article-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700; color: var(--text); line-height: 1.28;
  letter-spacing: -.4px; margin-bottom: 14px;
  word-wrap: break-word; overflow-wrap: break-word;
}
.article-meta {
  display: flex; gap: 14px; font-size: .78rem; color: var(--text-light);
  flex-wrap: wrap; padding-bottom: 18px; border-bottom: 2px solid var(--border); margin-bottom: 24px;
  align-items: center;
}
.article-meta .meta-badge {
  background: var(--primary-light); color: var(--primary);
  padding: 2px 9px; border-radius: 4px; font-weight: 600; font-size: .7rem;
}
.article-body {
  font-size: 1rem; line-height: 1.88; color: #2a2a2a;
  word-wrap: break-word; overflow-wrap: break-word;
}
.article-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.42rem);
  font-weight: 700; color: var(--text);
  margin: 36px 0 14px; padding-bottom: 9px;
  border-bottom: 2px solid var(--primary-light);
}
.article-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(.98rem, 2vw, 1.15rem);
  font-weight: 700; color: var(--text); margin: 26px 0 10px;
}
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 12px 0 18px 22px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--primary); text-decoration: underline; }
.article-body a:hover { color: var(--primary-dark); }
.article-body blockquote {
  border-left: 4px solid var(--primary); background: var(--primary-light);
  padding: 16px 20px; margin: 26px 0; border-radius: 0 8px 8px 0;
  font-style: italic; color: #2a4a38; font-family: var(--font-serif); font-size: 1.02rem;
}
.key-points {
  background: var(--bg-off); border: 1px solid var(--border);
  border-left: 4px solid var(--primary); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px; margin: 24px 0;
}
.key-points h4 { font-weight: 700; color: var(--primary); margin-bottom: 10px; font-size: .85rem; text-transform: uppercase; letter-spacing: .8px; }
.key-points ul { margin: 0 0 0 18px; }

/* ========================
   LAST UPDATED / DATA FRESHNESS
======================== */
.data-freshness {
  display: inline-flex; align-items: center; gap: 7px;
  background: #edfaf2; border: 1px solid #9de4bb; border-radius: 6px;
  padding: 5px 12px; font-size: .76rem; color: #1b5e3b; font-weight: 600;
  margin-bottom: 18px;
}
.data-freshness::before { content: '✓'; font-weight: 800; }

/* ========================
   AUTHOR BOX (EEAT)
======================== */
.author-box {
  background: var(--bg-off); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin: 40px 0;
  display: flex; gap: 18px; align-items: flex-start;
}
.author-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0; color: #fff;
  font-family: var(--font-serif); font-weight: 700;
}
.author-name { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 2px; }
.author-credentials { font-size: .76rem; color: var(--primary); font-weight: 600; margin-bottom: 4px; }
.author-bio { font-size: .84rem; color: var(--text-light); line-height: 1.65; }
.author-links { display: flex; gap: 10px; margin-top: 9px; flex-wrap: wrap; }
.author-links a { font-size: .76rem; color: var(--primary); border: 1px solid var(--border); padding: 3px 10px; border-radius: 4px; }
.author-links a:hover { background: var(--primary-light); }

/* ========================
   SIDEBAR
======================== */
.sidebar-widget {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; margin-bottom: 20px;
  overflow: hidden;
}
.widget-title {
  font-family: var(--font-serif); font-size: .95rem; font-weight: 700; color: var(--text);
  margin-bottom: 14px; padding-bottom: 9px; border-bottom: 2px solid var(--primary-light);
}
.related-post { padding: 9px 0; border-bottom: 1px solid var(--border-light); font-size: .83rem; }
.related-post:last-child { border-bottom: none; padding-bottom: 0; }
.related-post a { color: var(--text); font-weight: 500; line-height: 1.4; display: block; }
.related-post a:hover { color: var(--primary); }
.related-meta { font-size: .7rem; color: var(--text-muted); margin-top: 3px; }

/* ========================
   AD SLOTS (AdSense-ready)
======================== */
.ad-slot {
  background: var(--bg-off); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--text-muted); font-size: .76rem;
  text-align: center; width: 100%; min-height: 90px; margin: 24px 0;
  overflow: hidden;
}
.ad-slot-leaderboard { min-height: 90px; }
.ad-slot-rect { min-height: 250px; max-width: 336px; margin: 0 auto; }
.ad-slot-sidebar { min-height: 250px; width: 100%; max-width: 300px; }

/* ========================
   DISCLAIMER
======================== */
.disclaimer-box {
  background: #fffbeb; border: 1px solid #f0d070;
  border-left: 4px solid #f59e0b;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px; margin-bottom: 24px;
  font-size: .85rem; color: #78350f; line-height: 1.6;
}
.disclaimer-box strong { color: #6b2d07; }

/* ========================
   SOURCES
======================== */
.sources-section { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 20px; }
.sources-title { font-size: .8rem; font-weight: 700; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.sources-list { padding-left: 18px; }
.sources-list li { font-size: .77rem; color: var(--text-light); margin-bottom: 5px; line-height: 1.5; }
.sources-list a { color: var(--primary); }

/* ========================
   HOSPITAL/CITY CARD
======================== */
.hospital-card {
  display: flex; gap: 14px; align-items: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px; background: #fff; text-decoration: none;
  color: inherit; transition: all .22s; margin-bottom: 10px;
}
.hospital-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.hcard-rank {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700;
  color: var(--gold); min-width: 28px; text-align: center;
}
.hcard-info { flex: 1; min-width: 0; }
.hcard-name { font-weight: 600; font-size: .9rem; color: var(--text); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hcard-loc { font-size: .75rem; color: var(--text-muted); }
.hcard-score { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; text-align: right; white-space: nowrap; }

/* ========================
   NEARBY CARD
======================== */
.nearby-card {
  display: block; border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; text-decoration: none; transition: all .2s; background: #fff;
}
.nearby-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.nearby-name { font-weight: 600; font-size: .87rem; color: var(--text); margin-bottom: 2px; }
.nearby-loc { font-size: .75rem; color: var(--text-light); margin-bottom: 3px; }
.nearby-score { font-size: .76rem; font-weight: 600; }

/* ========================
   BLOG GRID
======================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.blog-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all .25s; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.card-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--primary-light), #b8dfc9);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; position: relative; flex-shrink: 0;
}
.card-category {
  position: absolute; top: 10px; left: 10px;
  background: var(--primary); color: #fff;
  font-size: .64rem; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; padding: 3px 9px; border-radius: 4px;
}
.card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.card-meta { display: flex; gap: 10px; font-size: .72rem; color: var(--text-muted); margin-bottom: 8px; flex-wrap: wrap; }
.card-title { font-family: var(--font-serif); font-size: .97rem; font-weight: 700; color: var(--text); line-height: 1.38; margin-bottom: 8px; }
.card-title a { color: inherit; }
.card-title a:hover { color: var(--primary); }
.card-excerpt { font-size: .84rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border-light); margin-top: auto; }
.read-more { font-size: .79rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 4px; }
.read-more:hover { color: var(--primary-dark); }
.read-time { font-size: .72rem; color: var(--text-muted); }

/* ========================
   CTA SECTION
======================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; padding: 64px 0; text-align: center;
}
.cta-section h2 { font-family: var(--font-serif); font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; margin-bottom: 12px; }
.cta-section p { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ========================
   FOOTER
======================== */
.site-footer { background: #0c1911; color: rgba(255,255,255,.55); padding: 56px 0 24px; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-desc { font-size: .83rem; line-height: 1.7; max-width: 270px; margin-top: 12px; }
.footer-col-title { font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.45); font-size: .84rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: .75rem; color: rgba(255,255,255,.28);
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }

/* ========================
   MISC UTILITIES
======================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 4px; } .mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.gap-y-4 > * + * { margin-top: 4px; }
.badge {
  display: inline-block; padding: 3px 9px; border-radius: 4px;
  font-size: .7rem; font-weight: 700; letter-spacing: .5px;
}
.badge-green { background: #e6f7ee; color: #1b5e3b; }
.badge-red { background: var(--accent-light); color: var(--accent); }
.badge-gold { background: #fef3da; color: #8a5f0c; }
.badge-gray { background: var(--bg-off); color: var(--text-muted); }

#scrollTop {
  position: fixed; bottom: 22px; right: 22px; width: 42px; height: 42px;
  background: var(--primary); color: #fff; border: none; border-radius: 50%;
  font-size: 1rem; cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .2s; z-index: 999; box-shadow: var(--shadow);
}
#scrollTop:hover { transform: translateY(-2px); background: var(--primary-dark); }
#scrollTop.visible { opacity: 1; pointer-events: auto; }

/* ========================
   STAT GRID (hospital detail)
======================== */
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 20px 0; }
.stat-box { background: var(--bg-off); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; }
.stat-val { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--text); }
.stat-lbl { font-size: .72rem; color: var(--text-muted); margin-top: 3px; text-transform: uppercase; letter-spacing: .5px; }

/* ========================
   CATEGORY PILLS
======================== */
.cat-pills { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 28px; }
.cat-pill {
  background: var(--bg-off); border: 1.5px solid var(--border); color: var(--text);
  padding: 6px 14px; border-radius: 24px; font-size: .8rem; font-weight: 500;
  cursor: pointer; transition: all .2s; user-select: none;
}
.cat-pill:hover, .cat-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ========================
   FORMS
======================== */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: .9rem; color: var(--text); background: #fff;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,94,59,.1); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--primary); color: #fff; border: 2px solid var(--primary);
  width: 100%; padding: 13px; border-radius: 8px; font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.form-submit:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

/* ========================
   RESPONSIVE
======================== */
@media(max-width:1024px) {
  .article-layout { grid-template-columns: 1fr; padding: 32px 0; }
  .article-sidebar { order: -1; }
  .metrics-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 44px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .author-box { flex-direction: column; gap: 12px; }
  .page-hero-band { padding: 32px 0 26px; }
  .cta-section { padding: 44px 0; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .hospital-card { flex-wrap: wrap; }
}
@media(max-width:480px) {
  .header-inner { padding: 0 14px; height: 56px; }
  .mobile-menu { top: 56px; }
  .container { padding: 0 14px; }
  .site-logo { font-size: .95rem; }
  .logo-icon { width: 32px; height: 32px; font-size: .95rem; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .score-badge { padding: 16px 20px; min-width: 110px; }
  .score-num { font-size: 2.2rem; }
}
