/* Mobee Medical — local recreation
   Palette: back to the original site's actual navy/blue (#0A2240 family),
   with the light-blue section backgrounds kept from the recent pass.
   This is a light-touch pass — a fuller aesthetic pass is planned later. */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;600;700;900&display=swap');

:root {
  --navy: #0A2240;
  --navy-grad-start: #0A2341;
  --navy-grad-end: #143D6B;
  --primary-blue: #2380BC;
  --teal: #21aac5;
  --teal-dark: #1A7B8A;
  --teal-label: #1F7E8D;
  --pill-bg: #EAF1FF;
  --pill-border: #C7DBFF;
  --orange: #E0A54A;
  --light-bg: #F4F7FC;
  --text-dark: #17253A;
  --text-body: #4A5B70;
  --white: #FCFDFF;
  --border: #DCE6F5;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
header.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-bar .logo img { height: 56px; width: auto; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-links a,
.nav-links li.has-dropdown > span {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a.current { color: var(--primary-blue); }

.nav-links .btn-link {
  background: var(--primary-blue);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 26px;
}
.nav-links .btn-link:hover { background: var(--teal-dark); text-decoration: none; }

.nav-links .btn-link-outline {
  border: 1.5px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 7px 16px;
  border-radius: 26px;
}
.nav-links .btn-link-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
}

.nav-links li.has-dropdown { position: relative; }
.nav-links li.has-dropdown > span::after {
  content: "▾";
  font-size: 0.7em;
  margin-left: 4px;
}
.nav-links .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 14px 0 8px;
  list-style: none;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
  z-index: 200;
}
.nav-links li.has-dropdown:hover .dropdown,
.nav-links li.has-dropdown:focus-within .dropdown {
  display: block;
}
.nav-links .dropdown li { display: block; }
.nav-links .dropdown a {
  display: block;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-links .dropdown a:hover {
  background: var(--pill-bg);
  text-decoration: none;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(163deg, var(--navy-grad-start) 0%, var(--navy-grad-end) 100%);
  color: var(--white);
  padding: 5em 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--white);
}

.hero h1 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin: 0 0 16px;
  line-height: 1.2;
  color: var(--white);
}

.hero p.lead {
  font-family: "Lato", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
  margin: 0 0 28px;
  max-width: 46ch;
  color: var(--white);
}
.hero p.lead .accent {
  color: var(--orange);
  font-style: italic;
}

.hero-address {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  max-width: 40ch;
}
.hero-address .label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin: 0 0 8px;
}
.hero-address p {
  margin: 0 0 7px;
  font-size: 1.1rem;
  color: #eef4f9;
}
.hero-address a {
  color: var(--white);
  font-weight: 600;
}
.hero-address a:hover { color: var(--orange); }

.btn-primary {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
  padding: 20px 45px;
  border-radius: 26px;
}
.btn-primary:hover { background: var(--teal-dark); text-decoration: none; }

/* Hero doctor photos — big, bold, square-cornered */
.hero-doctors {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.doctor-card {
  text-align: center;
  color: var(--white);
}

.doctor-card img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  border: 5px solid var(--white);
  margin: 0 auto 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.doctor-card a.doctor-name {
  display: inline-block;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  border-bottom: 2px solid transparent;
}
.doctor-card a.doctor-name:hover {
  border-bottom-color: var(--white);
  text-decoration: none;
}

.hero-doctors.single { justify-content: center; }
.hero-doctors.single .doctor-card img {
  width: 340px;
  height: 340px;
}
.hero-doctors.single .doctor-card a.doctor-name {
  font-size: 1.3rem;
}
@media (max-width: 900px) {
  .hero-doctors.single .doctor-card img { width: 260px; height: 260px; }
}

/* ---------- Benefits highlight band ---------- */
.benefits-band {
  background: var(--pill-bg);
  border-bottom: 1px solid var(--pill-border);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 2.3em 0;
}
.benefit-item {
  padding: 0 30px;
  border-right: 1px solid var(--pill-border);
}
.benefit-item:last-child { border-right: none; }

.benefit-icon {
  width: 38px;
  height: 38px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.benefit-icon svg { width: 100%; height: 100%; }

.benefit-title {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.benefit-divider {
  width: 34px;
  height: 2px;
  background: var(--primary-blue);
  margin: 0 0 8px;
}

.benefit-sublabel {
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--primary-blue);
  margin: 0 0 6px;
}

.benefit-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .benefit-item { border-right: none; border-bottom: 1px solid var(--pill-border); padding-bottom: 24px; }
}

/* ---------- Comprehensive Care (navy section) ---------- */
section.navy-section {
  background: var(--navy);
  color: var(--white);
}
section.navy-section h2.section-title {
  color: var(--white);
  font-size: 2.875rem;
  font-weight: 700;
}
section.navy-section p { color: #cfe0ec; }

/* ---------- Generic sections ---------- */
section { padding: 4em 0; }
section.alt-bg { background: var(--light-bg); }

h2.section-title {
  color: var(--text-dark);
  font-size: 1.1875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin: 0 0 8px;
}

h2.section-title.big {
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow-label {
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--teal-label);
  margin: 0 0 6px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--teal);
  margin: 0 0 20px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  display: block;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover {
  box-shadow: 0 10px 24px rgba(46,36,25,0.12);
  transform: translateY(-3px);
  text-decoration: none;
}

.card.coming-soon { position: relative; overflow: hidden; }

.coming-soon-banner {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  background: rgba(200, 30, 30, 0.55);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  padding: 8px 28px;
  white-space: nowrap;
  border-top: 2px solid rgba(255,255,255,0.75);
  border-bottom: 2px solid rgba(255,255,255,0.75);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  pointer-events: none;
  z-index: 5;
}

.coming-soon-banner.large {
  font-size: 1.6rem;
  padding: 12px 48px;
  letter-spacing: 3px;
}

@media (max-width: 600px) {
  .coming-soon-banner.large { font-size: 1.1rem; padding: 10px 32px; }
}

.card h2.section-title { font-size: 1.1875rem; }

.card p { font-size: 0.92rem; }

.card .learn-more-label {
  font-weight: 700;
  color: var(--teal);
  font-size: 0.9rem;
}

/* ---------- Service locations ---------- */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.location-pill {
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  color: var(--teal-dark);
  padding: 1em;
  border-radius: 150px;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.location-pill:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  text-decoration: none;
}

/* ---------- Insurance ---------- */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px 24px;
}
.insurance-grid div {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}

/* ---------- Office photo tour ---------- */
.office-tour-intro { max-width: 60ch; margin: 0 0 28px; }

.office-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 18px;
}
.office-tour-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
  transition: transform 0.35s ease;
}
.office-tour-grid img:hover { transform: scale(1.02); }
.office-tour-grid .tall { grid-row: 1 / 3; }
.office-tour-grid figure { margin: 0; height: 100%; }

@media (max-width: 900px) {
  .office-tour-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .office-tour-grid .tall, .office-tour-grid figure { grid-row: auto; height: 280px; }
}

/* ---------- Community sections ---------- */
.community-grid {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.community-item {
  text-align: center;
  max-width: 220px;
}
.community-item img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 12px;
}
.community-item h4 {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Reviews (compact banner) ---------- */
.reviews-banner .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.reviews-copy .eyebrow-label { margin-bottom: 4px; }
.reviews-rating {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.reviews-rating .score { font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.reviews-rating .stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 2px; }
.review-entry { margin-bottom: 18px; }
.reviews-copy p.quote {
  font-style: italic;
  color: var(--text-body);
  margin: 0 0 6px;
}
.reviews-copy p.attribution {
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  font-size: 0.9rem;
}
.reviews-copy .btn-primary { margin-top: 8px; }
.reviews-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(46,36,25,0.15);
}

@media (max-width: 900px) {
  .reviews-banner .container { grid-template-columns: 1fr; }
}

/* ---------- FAQ home teaser ---------- */
.faq-teaser {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  border-radius: 12px;
  padding: 3em 2em;
}
.faq-teaser h2.section-title { color: var(--white); }
.faq-teaser p {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  max-width: 65ch;
  margin: 0 auto;
}
.faq-teaser .btn-primary { margin-top: 16px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy);
  color: #cfe0ec;
  padding: 3em 0 1.5em;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-grid h4 {
  color: var(--white);
  margin-top: 0;
}

footer.site-footer a { color: #9fd4ec; }

.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.social-icon svg { flex-shrink: 0; }

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 32px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #7fa6bc;
}

/* ---------- Blog list page ---------- */
.blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 820px;
}
.blog-list li { border-bottom: 1px solid var(--border); }
.blog-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 6px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}
.blog-list a:hover { color: var(--primary-blue); text-decoration: none; }
.blog-list a .arrow { color: var(--primary-blue); font-weight: 700; flex-shrink: 0; }

/* ---------- FAQ page ---------- */
.faq-page-hero {
  background: linear-gradient(163deg, var(--navy-grad-start) 0%, var(--navy-grad-end) 100%);
  color: var(--white);
  padding: 3.5em 0;
  text-align: center;
}
.faq-page-hero h1 { margin: 0 0 8px; font-size: 2.5rem; }
.faq-page-hero p {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  max-width: 70ch;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item h3 {
  color: var(--text-dark);
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.faq-item p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}
.faq-item p + p { margin-top: 10px; }

/* ---------- Location / ads landing page ---------- */
.location-hero {
  background: linear-gradient(163deg, var(--navy-grad-start) 0%, var(--navy-grad-end) 100%);
  color: var(--white);
  padding: 4em 0;
  position: relative;
  overflow: hidden;
}
.location-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--orange);
  font-size: 0.95rem;
  margin: 0 0 10px;
}
.location-hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0 0 16px;
  max-width: 20ch;
}
.location-hero p.lead {
  font-size: 1.2rem;
  max-width: 55ch;
  margin: 0 0 28px;
  color: #eef4f9;
}
.location-hero .cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.location-hero .cta-row .phone-link {
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
}
.location-hero .cta-row .phone-link .call-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #b9d4e8;
}

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: var(--text-body);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--primary-blue);
  font-weight: 700;
}

.doctor-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 24px auto 0;
}
.doctor-mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.doctor-mini-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 4px solid var(--pill-bg);
}
.doctor-mini-card h3 { margin: 0 0 6px; font-size: 1.15rem; color: var(--text-dark); }
.doctor-mini-card a.profile-link { font-weight: 600; font-size: 0.95rem; }

.location-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content .updated-date {
  color: var(--text-body);
  font-size: 0.9rem;
  margin: 0 0 32px;
}
.legal-content h2 {
  color: var(--text-dark);
  font-size: 1.4rem;
  margin: 40px 0 12px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin: 24px 0 8px;
}
.legal-content p, .legal-content li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
}
.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin: 0 0 16px;
}
.legal-content li { margin-bottom: 8px; }
.legal-content .legal-callout {
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
}
.legal-content .legal-callout p { margin: 0; color: var(--text-dark); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form label {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
  font-size: 0.95rem;
}
.contact-form .field { margin-bottom: 20px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form button.btn-primary {
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.contact-form .form-note {
  font-size: 0.85rem;
  color: var(--text-body);
  margin-top: 4px;
}

.contact-info-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.contact-info-card h3 {
  color: var(--text-dark);
  margin: 0 0 4px;
  font-size: 1.1rem;
}
.contact-info-card p { margin: 0 0 20px; color: var(--text-body); line-height: 1.6; }
.contact-info-card p:last-child { margin-bottom: 0; }

.distance-badge {
  display: inline-block;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.nearby-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .location-hero h1 { font-size: 2rem; max-width: none; }
  .doctor-mini-grid { grid-template-columns: 1fr; }
}

.faq-category {
  color: var(--primary-blue);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 56px 0 4px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-blue);
}
.faq-category:first-of-type { margin-top: 0; }

/* ---------- Meet the Team page ---------- */
.team-page-hero {
  background: linear-gradient(163deg, var(--navy-grad-start) 0%, var(--navy-grad-end) 100%);
  color: var(--white);
  padding: 3.5em 0;
  text-align: center;
}
.team-page-hero h1 { font-size: 2.5rem; }
.team-page-hero p { font-size: 1.2rem; }
.team-page-hero .pronunciation { font-size: 1.1rem; font-style: italic; color: #cfe0ec; margin-top: -8px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.team-grid.single {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.team-member {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  scroll-margin-top: 90px;
}

.team-member img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 20px;
  border: 7px solid var(--primary-blue);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-member h2 { color: var(--text-dark); margin-bottom: 4px; font-size: 1.7rem; }
.team-member .pronunciation { font-size: 1.05rem; font-style: italic; color: var(--text-body); margin-bottom: 16px; }
.team-member .title { color: var(--teal); font-weight: 600; margin-bottom: 16px; font-size: 1.2rem; }
.team-member p.bio { text-align: left; font-size: 1.15rem; line-height: 1.7; }

/* ---------- Blog placeholder ---------- */
.blog-empty {
  text-align: center;
  padding: 5em 2em;
  color: var(--text-body);
}
.blog-empty h1 { color: var(--text-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container, .two-col, .team-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-doctors { flex-direction: column; align-items: center; }
  .hero-eyebrow { font-size: 2.2rem; }
  .hero h1 { font-size: 2rem; }
  section.navy-section h2.section-title { font-size: 2rem; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
}
