/* ── TRAJAN PRO (self-hosted) ── */
/* Copy TrajanProRegular.woff2 and TrajanProBold.woff2 from the html/ folder
   into this theme's assets/fonts/ directory, then these @font-face rules apply. */
@font-face {
  font-family: 'Trajan Pro';
  src: url('../fonts/TrajanProRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trajan Pro';
  src: url('../fonts/TrajanProBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --red:        #e00226;
  --red-dk:     #b8001e;
  --dark:       #2b2b2b;
  --gray-bg:    #f7f8fa;
  --border:     #e4e4e4;
  --text:       #444;
  --star:       #f5a623;
  --shadow:     0 2px 16px rgba(0,0,0,.09);
  --blue-icon:  #1a5caa;
  --blue-light: #e8f1fb;
  --footer-bg:  #2a2d35;
  --font-serif: 'Trajan Pro', Georgia, serif;
  --font-sans:  'Open Sans', Arial, sans-serif;
  --max-width:  1100px;
  --pad-x:      40px;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
}
body.mobile-nav-open {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.content-body a:not(.btn-solid):not(.btn-outline):not(.bill-pay-button),
.entry-content a:not(.btn-solid):not(.btn-outline):not(.bill-pay-button),
.single-post-content a:not(.btn-solid):not(.btn-outline):not(.bill-pay-button) {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.content-body a:not(.btn-solid):not(.btn-outline):not(.bill-pay-button):hover,
.content-body a:not(.btn-solid):not(.btn-outline):not(.bill-pay-button):focus-visible,
.entry-content a:not(.btn-solid):not(.btn-outline):not(.bill-pay-button):hover,
.entry-content a:not(.btn-solid):not(.btn-outline):not(.bill-pay-button):focus-visible,
.single-post-content a:not(.btn-solid):not(.btn-outline):not(.bill-pay-button):hover,
.single-post-content a:not(.btn-solid):not(.btn-outline):not(.bill-pay-button):focus-visible {
  color: var(--red-dk);
  text-decoration-thickness: 2px;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
}
h1 { font-size: clamp(30px, 4.2vw, 50px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; }
h3 { font-size: 18px; font-weight: 700; }
p  { font-family: var(--font-sans); }

/* ── BUTTONS ── */
.btn-solid {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 6px;
  display: inline-block;
  transition: background .15s;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
}
.btn-solid:hover { background: var(--red-dk); color: #fff; }

.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 6px;
  display: inline-block;
  transition: background .15s, color .15s;
  font-family: var(--font-sans);
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover { background: var(--red); color: #fff; }

/* ── SECTION HELPERS ── */
.section {
  padding: 72px var(--pad-x);
}
.section-alt {
  background: var(--gray-bg);
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading h2 {
  color: var(--dark);
  margin-bottom: 10px;
}
.section-heading p {
  font-size: 18px;
  color: #777;
  max-width: 680px;
  margin: 12px auto 0;
}
.section-bar {
  width: 44px;
  height: 3px;
  background: var(--red);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ── EYEBROW ── */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* ── PAGE BANNER (shared by interior pages) ── */
.page-banner {
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1420 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--banner-bg-url, none) center / cover no-repeat;
  opacity: .28;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,20,32,.94) 0%, rgba(15,20,32,.78) 52%, rgba(15,20,32,.48) 100%);
}
.page-banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.page-banner-rail {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 4px;
  background: var(--red);
}
.page-banner-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  max-width: 760px;
  margin-bottom: 8px;
  color: rgba(255,255,255,.42);
  font-size: 15px;
  line-height: 1.4;
}
.page-banner-breadcrumb a {
  color: rgba(255,255,255,.52);
}
.page-banner-breadcrumb a:hover,
.page-banner-breadcrumb a:focus-visible {
  color: #fff;
  text-decoration: underline;
}
.page-banner-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.page-banner-layout {
  max-width: 680px;
}
.page-banner-copy {
  max-width: 680px;
}
.page-banner h1 {
  color: #fff;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.08;
  margin-bottom: 14px;
}
.page-banner-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  max-width: 660px;
  margin: 0;
}
.page-banner-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 26px;
}
.pb-btn-call,
.pb-btn-checkin {
  background: var(--red);
  color: #fff;
  min-height: 52px;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .2px;
}
.pb-btn-call:hover,
.pb-btn-checkin:hover { background: var(--red-dk); color: #fff; }
.pb-btn-dir {
  background: rgba(255,255,255,.12);
  color: #fff;
  min-height: 52px;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: .2px;
}
.pb-btn-dir:hover { background: rgba(255,255,255,.22); color: #fff; }
.page-banner-location-note {
  display: flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  max-width: min(100%, 560px);
  min-height: 58px;
  margin: 18px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.09);
  color: #f1f4f8;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
  backdrop-filter: blur(4px);
  text-decoration: none;
}
.page-banner-location-note:hover,
.page-banner-location-note:focus-visible {
  background: rgba(255,255,255,.16);
  color: #fff;
  border-color: rgba(255,255,255,.36);
}
.page-banner-location-note::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(224,2,38,.22);
}
.page-banner-location-note::after {
  content: "24/7";
  flex: 0 0 auto;
  margin-left: auto;
  padding: 4px 10px;
  border: 1px solid rgba(79,217,127,.65);
  border-radius: 999px;
  color: #74f69a;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

/* ── NEWS SEGMENTS ── */
.page-slug-news-segments {
  background: #f6f7f9;
  padding: 64px var(--pad-x) 76px;
}
.page-slug-news-segments .content-area,
.page-slug-news-segments .site-main,
.page-slug-news-segments .entry-content {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-slug-news-segments .entry-header,
.page-slug-news-segments .gsp_post_data {
  display: none;
}
.page-slug-news-segments .covid {
  width: 100%;
}
.page-slug-news-segments .covid .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 0 0 28px;
}
.page-slug-news-segments .covid [class*="col-"] {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: auto;
  max-width: 100%;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 26, 40, .08);
}
.page-slug-news-segments .covid-ii {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  margin-bottom: 16px;
}
.page-slug-news-segments .covid-ii h2 {
  min-height: 58px;
  margin: 0;
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: none;
}
.page-slug-news-segments .covid-ii p {
  display: flex;
  align-items: center;
  min-height: 54px;
  margin: 0;
}
.page-slug-news-segments .covid-ii img {
  width: auto;
  max-width: min(100%, 280px);
  max-height: 70px;
  object-fit: contain;
}
.page-slug-news-segments .secondvd {
  overflow: hidden;
  min-width: 0;
  margin-top: auto;
  border-radius: 8px;
  background: var(--gray-bg);
  aspect-ratio: 16 / 9;
}
.page-slug-news-segments .secondvd video,
.page-slug-news-segments .secondvd iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--gray-bg);
}
.page-slug-news-segments .secondvd img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-inner svg {
  width: 12px;
  height: 12px;
  color: #aaa;
  flex-shrink: 0;
}
.breadcrumb-inner a { color: var(--red); }
.breadcrumb-inner a:hover { text-decoration: underline; }

.medical-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 16px;
  margin: 0 0 28px;
  color: #626b7a;
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.35;
}
.medical-review-badge a {
  color: var(--dark);
  font-weight: 700;
}
.medical-review-badge a:hover {
  color: var(--red);
}
.medical-review-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--red);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(224, 2, 38, .12);
}
.medical-review-badge-icon svg {
  width: 15px;
  height: 15px;
}

/* ── PAGE CONTENT WRAPPER ── */
.page-content {
  padding: 72px var(--pad-x);
}
.page-content-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── CONTENT BODY TYPOGRAPHY ── */
.content-body h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--dark);
  margin: 48px 0 0;
  line-height: 1.25;
}
.content-body h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--red);
  margin-top: 10px;
  border-radius: 2px;
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 8px;
}
.content-body p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin: 14px 0 0;
  max-width: 780px;
}
.content-body > #container,
.content-body .servicesection,
.content-body .hmemergency-section,
.content-body .galleryslidersection,
.content-body .hmurgentcare-section,
.content-body .aboutcontent,
.content-body .serviceblock,
.content-body .servicelider-block {
  width: 100%;
}
.content-body .wrap-inner,
.content-body .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.content-body .innerbanner {
  display: none;
}
.content-body .row,
.content-body .wrap-inner,
.content-body .urgentcarerow {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-body .twocol,
.content-body [class*="col-md-"],
.content-body [class*="col-sm-"],
.content-body [class*="col-xs-"] {
  flex: 1 1 280px;
  min-width: 0;
  float: none;
  width: auto;
  max-width: 100%;
}
.content-body .serviceimg,
.content-body .dr-img,
.content-body .hmserthumb,
.content-body .galleryslidersection .slider > div {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--gray-bg);
}
.content-body .serviceimg img,
.content-body .dr-img img,
.content-body .hmserthumb img,
.content-body .galleryslidersection img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.content-body .serviceinner,
.content-body .servicedesc,
.content-body .emergencysmcdec,
.content-body .dr-profile,
.content-body .item {
  min-width: 0;
}
.content-body .urgentcarerow {
  align-items: stretch;
  margin-top: 18px;
}
.content-body .urgcolm {
  flex: 1 1 220px;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}
.content-body .urgcolm ul {
  max-width: none;
}
.content-body .urgcolm li {
  background: transparent;
  border-left: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 8px 0;
}
.content-body .urgcolm li:last-child {
  border-bottom: 0;
}
.content-body .otherservicesec .row,
.content-body .hmsevlistrowblock .row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.content-body .hmserviceblock {
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.content-body .hmserviceblock h3 {
  padding: 16px;
  margin: 0;
}
.service-page-content .content-main {
  min-width: 0;
}
.service-page-content .content-body > #container,
.service-page-content .content-body .servicesection {
  display: block;
}
.service-page-content .content-body .serviceblock {
  margin-bottom: 38px;
}
.service-page-content .content-body .serviceblock .wrap-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: stretch;
}
.service-page-content .content-body .serviceinner,
.service-page-content .content-body .servicedesc,
.service-page-content .content-body .emergencysmcdec {
  max-width: 100%;
}
.service-page-content .content-body .twocol {
  flex: none;
  width: 100%;
}
.service-page-content .content-body .serviceinner > h2:first-child,
.service-page-content .content-body .servicedesc > h2:first-child,
.service-page-content .content-body .servicedesc > h3:first-child {
  margin-top: 0;
}
.service-page-content .content-body .serviceinner ul,
.service-page-content .content-body .servicedesc ul,
.service-page-content .content-body .emergencysmcdec ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  max-width: 100%;
  margin-top: 20px;
}
.service-page-content .content-body .serviceinner ul li,
.service-page-content .content-body .servicedesc ul li,
.service-page-content .content-body .emergencysmcdec ul li {
  min-height: 48px;
  margin-bottom: 0;
}
.service-page-content .content-body .serviceinner ul li:only-child,
.service-page-content .content-body .servicedesc ul li:only-child,
.service-page-content .content-body .emergencysmcdec ul li:only-child {
  grid-column: 1 / -1;
}
.service-page-content .content-body .serviceimg {
  width: min(100%, 620px);
  aspect-ratio: 16 / 10;
  margin: 8px auto 0;
  box-shadow: 0 14px 36px rgba(20, 24, 32, .08);
}
.page-id-20 .service-page-content .content-body .serivceslider,
.page-id-20 .service-page-content .content-body .galleryslidersection .slider {
  max-width: 760px;
  margin: 0 auto 32px;
}
.page-id-20 .service-page-content .content-body .serivceslider {
  grid-template-columns: 1fr;
}
.page-id-20 .service-page-content .content-body .serivceslider img {
  height: clamp(220px, 32vw, 360px);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(20, 24, 32, .12);
}
.service-page-content .content-body .serviceimg:empty {
  display: none;
}
.service-page-content .content-body .serviceimg img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-page-content .content-body video,
.service-page-content .content-body iframe {
  max-width: 100%;
}
.service-page-content .content-body video {
  height: auto;
}
.service-page-content .content-body .servicelider-block {
  margin: 34px 0 0;
  padding: 0;
}
.service-page-content .content-body .servicelider-block .wrap-inner,
.service-page-content .content-body .sliderservice {
  display: block;
}
.service-page-content .content-body .serivceslider,
.service-page-content .content-body .galleryslidersection .slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service-page-content .content-body .serivceslider .item,
.service-page-content .content-body .galleryslidersection .slider > div {
  display: block;
  min-width: 0;
  width: auto;
  margin: 0;
}
.service-page-content .content-body .serivceslider img,
.service-page-content .content-body .galleryslidersection img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: center;
}
.service-page-content .content-body .accordionfaqs {
  display: block;
  margin-top: 28px;
}
.service-page-content .content-body .accordionfaqs .accordionrow {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.service-page-content .content-body .accordionfaqs .acclink {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.2;
  margin: 0 0 10px;
}
.service-page-content .content-body .accordionfaqs .accord-detail {
  display: block !important;
  max-width: 900px;
}
.service-page-content .content-body .accordionfaqs .accord-detail p,
.service-page-content .content-body .accordionfaqs .accord-detail li {
  font-size: 17px;
  color: #555;
  line-height: 1.75;
}
.service-page-content .content-body .accordionfaqs .accord-detail ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin-top: 12px;
  max-width: 760px;
}

.page-id-10 .content-body .accordionfaqs {
  display: grid;
  gap: 12px;
  margin: 28px auto 0;
  max-width: 980px;
}

.page-id-10 .content-body .accordionfaqs .accordionrow {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.page-id-10 .content-body .accordionfaqs .acclink {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 18px 56px 18px 20px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
  cursor: pointer;
}

.page-id-10 .content-body .accordionfaqs .acclink::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-bg);
  color: #777;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.page-id-10 .content-body .accordionfaqs .accordionrow.is-open .acclink::after,
.page-id-10 .content-body .accordionfaqs .acclink[aria-expanded="true"]::after {
  content: "-";
}

.page-id-10 .content-body .accordionfaqs .acclink:focus-visible {
  outline: 3px solid rgba(191, 14, 31, 0.28);
  outline-offset: -3px;
}

.page-id-10 .content-body .accordionfaqs .accord-detail {
  display: none;
  padding: 0 20px 18px;
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

.page-id-10 .content-body .accordionfaqs .accordionrow.is-open .accord-detail {
  display: block;
}
.service-page-content .content-body .servicedesc {
  margin-top: 26px;
}
.service-page-content .content-body p:empty,
.service-page-content .content-body br + br {
  display: none;
}
.service-page-content .content-sidebar {
  min-width: 0;
}
.service-page-content .sidebar-card {
  width: 100%;
}
.service-page-content .sidebar-btns {
  grid-template-columns: 1fr;
}
.service-page-content .sb-btn-dir,
.service-page-content .sb-btn-call {
  min-width: 0;
  white-space: normal;
  text-align: center;
}
.about-page-content .content-grid,
.about-page-content .content-main {
  display: block;
  max-width: 100%;
}
.about-page-content .content-body p {
  max-width: 980px;
}
.about-page-content .content-body table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 24px 0;
  margin: 32px -24px 56px;
}
.about-page-content .content-body table th,
.about-page-content .content-body table td {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  vertical-align: middle;
}
.about-page-content .content-body table th {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.05;
  color: var(--ink);
}
.about-page-content .content-body table td:not(:first-child) {
  text-align: center;
}
.about-page-content .check,
.about-page-content .uncheck {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 0;
  line-height: 1;
  vertical-align: middle;
}
.about-page-content .check {
  background: rgba(228, 0, 43, 0.1);
  color: var(--red);
}
.about-page-content .uncheck {
  background: rgba(42, 42, 42, 0.08);
  color: #666;
}
.about-page-content .check::before,
.about-page-content .uncheck::before {
  font-size: 18px;
  font-weight: 900;
}
.about-page-content .check::before {
  content: "\2713";
}
.about-page-content .uncheck::before {
  content: "\00d7";
}
.about-page-content .hmurgentcare-section {
  width: 100%;
  margin: 64px 0 18px;
  padding: 0;
  background: #fff;
}
.about-page-content .hmurgentcare-section .wrap-inner {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.about-page-content .hmurgentcare-section h2 {
  margin: 0 0 44px;
  color: var(--dark);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
  text-align: center;
}
.about-page-content .hmurgentcare-section h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 2px;
  background: var(--red);
}
.about-page-content .urgentcarerow {
  display: block;
}
.about-page-content .mver-comparison {
  overflow: hidden;
  border: 1px solid #e9eaec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(16,20,30,.06);
}
.about-page-content .mver-comparison__scroll {
  width: 100%;
  overflow-x: auto;
}
.about-page-content .mver-comparison table {
  width: 100%;
  min-width: 760px;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
}
.about-page-content .mver-comparison caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.about-page-content .mver-comparison th,
.about-page-content .mver-comparison td {
  border: 0;
  border-top: 1px solid #eeeff1;
  padding: 18px 20px;
  text-align: center;
  vertical-align: middle;
}
.about-page-content .mver-comparison thead th {
  border-top: 0;
  background: #16181d;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.about-page-content .mver-comparison thead th:first-child {
  width: 54%;
  color: transparent;
  text-align: left;
}
.about-page-content .mver-comparison thead th:nth-child(2) {
  background: var(--red);
}
.about-page-content .mver-comparison tbody tr:nth-child(even) {
  background: #f7f8fa;
}
.about-page-content .mver-comparison tbody th {
  width: 54%;
  color: #16181d;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}
.about-page-content .mver-comparison tbody td {
  color: #3f444b;
  font-size: 0;
  font-weight: 800;
}
.about-page-content .mver-comparison tbody td:nth-child(2) {
  border-right: 2px solid rgba(224,2,38,.22);
  border-left: 2px solid rgba(224,2,38,.22);
  background: rgba(224,2,38,.035);
}
.about-page-content .mver-comparison__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 0;
  line-height: 1;
}
.about-page-content .mver-comparison__icon::before {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 900;
}
.about-page-content .mver-comparison__icon--check {
  background: rgba(22,163,74,.12);
  color: #168a43;
}
.about-page-content .mver-comparison__icon--check::before {
  content: "\2713";
}
.about-page-content .mver-comparison__icon--x {
  background: rgba(42,42,42,.08);
  color: #6b7079;
}
.about-page-content .mver-comparison__icon--x::before {
  content: "\00d7";
}
@media (max-width: 767px) {
  .about-page-content .hmurgentcare-section {
    margin-top: 44px;
  }
  .about-page-content .hmurgentcare-section .wrap-inner {
    max-width: 100%;
  }
  .about-page-content .hmurgentcare-section h2 {
    margin-bottom: 36px;
    font-size: clamp(24px, 6vw, 34px);
  }
  .about-page-content .mver-comparison {
    border-radius: 14px;
  }
  .about-page-content .mver-comparison table {
    display: table;
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    margin: 0;
    font-size: 12px;
  }
  .about-page-content .mver-comparison thead {
    display: table-header-group;
  }
  .about-page-content .mver-comparison tbody {
    display: table-row-group;
  }
  .about-page-content .mver-comparison tr {
    display: table-row;
  }
  .about-page-content .mver-comparison th,
  .about-page-content .mver-comparison td {
    display: table-cell;
    width: auto;
    padding: 13px 8px;
    text-align: center;
  }
  .about-page-content .mver-comparison thead th:first-child,
  .about-page-content .mver-comparison tbody th {
    width: 54%;
    font-size: 12px;
    line-height: 1.28;
    text-align: left;
  }
  .about-page-content .mver-comparison thead th {
    font-size: 10px;
    line-height: 1.15;
    letter-spacing: 0;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .about-page-content .mver-comparison thead th:nth-child(2),
  .about-page-content .mver-comparison thead th:nth-child(3),
  .about-page-content .mver-comparison tbody td {
    width: 23%;
  }
  .about-page-content .mver-comparison__icon {
    width: 26px;
    height: 26px;
  }
  .about-page-content .mver-comparison__icon::before {
    font-size: 16px;
  }
}
.about-page-content .galleryslidersection {
  margin: 42px 0;
}
.about-page-content .galleryslidersection .slider-for {
  display: none;
}
.about-page-content .galleryslidersection .slider-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.about-page-content .galleryslidersection .slider-nav > div {
  margin: 0;
  min-width: 0;
}
.about-page-content .galleryslidersection img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.insurance-page-content .insurance-content-grid {
  display: block;
}
.insurance-page-content .content-main {
  max-width: 1080px;
  margin: 0 auto;
}
.insurance-page-content .content-body {
  max-width: 100%;
}
.insurance-page-content .content-body > h2,
.insurance-page-content .content-body > h3,
.insurance-page-content .content-body > p {
  max-width: 920px;
}
.insurance-page-content .content-body .serviceblock .wrap-inner {
  display: block;
}
.insurance-page-content .content-body .serviceblock,
.insurance-page-content .content-body .wrap-inner,
.insurance-page-content .content-body .serviceinner,
.insurance-page-content .content-body .servicedesc {
  width: 100%;
  max-width: 100%;
}
.insurance-page-content .content-body .serviceinner ul,
.insurance-page-content .content-body .servicedesc ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}
.insurance-page-content .content-body .serviceinner li,
.insurance-page-content .content-body .servicedesc li {
  position: relative;
  margin: 0;
  padding: 14px 16px 14px 22px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: #f8f9fb;
}
.insurance-page-content .content-body .serviceinner li::before,
.insurance-page-content .content-body .servicedesc li::before {
  content: none;
}
.insurance-page-content .content-body .serviceimg {
  float: right;
  width: min(42%, 460px);
  aspect-ratio: 4 / 3;
  margin: 0 0 26px 42px;
  border-radius: 10px;
  overflow: hidden;
}
.insurance-page-content .content-body .serviceblock::after {
  content: "";
  display: table;
  clear: both;
}
.insurance-page-content .content-body .serviceimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insurance-page-content .content-body .serivceslider {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.insurance-page-content .content-body .serivceslider img {
  height: 140px;
  object-fit: cover;
}
.sidebar-row a,
.why-location-row a,
.pac-info-row a,
.footer-contact-list a {
  color: inherit;
  text-decoration: none;
}
.sidebar-row a:hover,
.sidebar-row a:focus,
.why-location-row a:hover,
.why-location-row a:focus,
.pac-info-row a:hover,
.pac-info-row a:focus,
.footer-contact-list a:hover,
.footer-contact-list a:focus {
  color: var(--red);
}
.bill-pay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
.content-body a.bill-pay-button,
.entry-content a.bill-pay-button,
.single-post-content a.bill-pay-button {
  color: #fff;
  text-decoration: none;
}
.bill-pay-button:hover,
.bill-pay-button:focus {
  background: var(--red-dk);
  color: #fff;
}
.page-slug-news-segments .content-area,
.page-slug-news-segments .site-main,
.page-slug-news-segments .entry-content {
  width: 100%;
}
.page-slug-news-segments .entry-header {
  display: none;
}
.page-slug-news-segments .covid .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}
.page-slug-news-segments .covid [class*="col-"] {
  width: auto;
  max-width: 100%;
}
.page-slug-news-segments .covid-ii,
.page-slug-news-segments .secondvd {
  min-width: 0;
}
.page-slug-news-segments .secondvd img,
.page-slug-news-segments .secondvd iframe,
.page-slug-news-segments .secondvd video {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}
.page-slug-news-segments .secondvd iframe,
.page-slug-news-segments .secondvd video {
  min-height: 260px;
  background: var(--gray-bg);
}
.page-slug-review-us .fbgpreviewcol iframe {
  min-height: 1300px;
}
.page-slug-review-us .fbgpreviewcol {
  width: 100%;
}
.google-reviews-panel {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1.12fr);
  gap: 28px;
  align-items: stretch;
  margin: 36px 0 10px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.google-reviews-copy h2 {
  color: var(--dark);
  margin-bottom: 12px;
}
.google-reviews-copy p:not(.eyebrow) {
  color: #5f646b;
  font-size: 17px;
  line-height: 1.7;
}
.google-reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.google-reviews-map iframe {
  width: 100%;
  min-height: 340px;
  height: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--gray-bg);
}
.doctors-page-content {
  background: #f4f5f7;
  padding-top: 70px;
  padding-bottom: 76px;
}
.doctors-page-inner {
  max-width: 1280px;
}
.doctors-page-heading {
  margin: 0 auto 44px;
  max-width: 900px;
  text-align: center;
}
.doctors-page-heading h2 {
  color: #2d2d2d;
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.doctors-page-heading .section-bar {
  display: none;
}
.doctors-page-heading p {
  color: #6f6f6f;
  font-size: 20px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}
.doctors-page-content .doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.dr-card {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(22, 27, 34, .08);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.dr-card:hover {
  box-shadow: 0 18px 46px rgba(22, 27, 34, .13);
  transform: translateY(-4px);
}
.dr-card-inner {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}
.dr-card-photo {
  width: 150px;
  height: 150px;
  margin: 42px auto 0;
  border: 5px solid #e8e8e8;
  border-radius: 50%;
  overflow: hidden;
  background: #dfe6ff;
}
.dr-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .3s;
}
.dr-card:hover .dr-card-photo img {
  transform: scale(1.04);
}
.dr-card-body {
  padding: 28px 26px 38px;
  text-align: center;
}
.dr-card-name {
  color: #2f2f2f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}
.dr-card-cred {
  color: var(--red);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.dr-card-spec {
  color: #858585;
  font-size: 18px;
  line-height: 1.5;
}
.content-body a {
  overflow-wrap: anywhere;
}
.page-intro,
.contact-intro {
  margin-bottom: 36px;
}
.home-editor-content {
  padding-bottom: 0;
}
.content-body .lead {
  font-size: 19px;
  color: #444;
  line-height: 1.75;
  max-width: 760px;
}
.content-body ul, .check-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  max-width: 700px;
}
.content-body ul li, .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #555;
  line-height: 1.55;
  padding: 9px 14px;
  background: var(--gray-bg);
  border-radius: 6px;
  margin-bottom: 6px;
  border-left: 3px solid var(--red);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  max-width: 700px;
}
.info-grid li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  padding: 8px 12px;
  background: var(--gray-bg);
  border-radius: 6px;
  border-left: 3px solid var(--red);
}
.callout-box {
  background: #fff5f6;
  border-left: 4px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px 18px 20px;
  margin: 22px 0 0;
  max-width: 700px;
}
.callout-box-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0 0;
}
.faq-mini {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
  max-width: 740px;
}
.faq-mini-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.faq-mini-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.faq-mini-item:last-child { border-bottom: none; }
.faq-mini-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-mini-q::before {
  content: 'Q';
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-mini-a {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  padding-left: 28px;
}

/* ── BLOG INDEX ── */
.blog-index-page .pagination {
  margin-top: 36px;
}
.blog-index-page.blog-infinite-ready .pagination {
  display: none;
}
.blog-load-status {
  min-height: 28px;
  margin-top: 30px;
  text-align: center;
  color: #777;
  font-size: 14px;
}

/* ── SINGLE BLOG POSTS ── */
.single-post-page {
  background: #fff;
}
.single-post-inner {
  max-width: 920px;
}
.single-post-article {
  min-width: 0;
}
.single-post-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.single-post-header .medical-review-badge {
  margin: 0;
}
.single-post-date {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--red);
  background: #fff5f6;
  border: 1px solid rgba(224, 2, 38, .18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}
.single-post-featured {
  width: min(100%, 720px);
  margin: 0 auto 30px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 42px rgba(20, 24, 32, .12);
  background: var(--gray-bg);
}
.single-post-featured img {
  width: 100%;
  height: clamp(180px, 24vw, 260px);
  object-fit: cover;
  object-position: center;
}
.single-post-content {
  max-width: 780px;
  margin: 0 auto;
}
.single-post-content > #container,
.single-post-content .blog-conatain,
.single-post-content .wrap-inner,
.single-post-content .bloginfo {
  width: 100%;
  max-width: 100%;
}
.single-post-content .bloginfo > h1:first-child,
.single-post-content .more-blog-btn,
.single-post-content .gsp_post_data {
  display: none !important;
}
.single-post-content .blogdetail-section {
  display: block;
}
.single-post-content .bolgimage-wrap {
  display: none !important;
}
.single-post-content .blog-date {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  margin: 0 0 18px;
  color: var(--red);
  background: #fff5f6;
  border: 1px solid rgba(224, 2, 38, .18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}
.single-post-content .row {
  display: block;
}
.single-post-content [class*="col-"] {
  width: 100%;
  max-width: 100%;
  float: none;
}
.single-post-content p,
.single-post-content li {
  font-size: 17px;
  line-height: 1.8;
}
.single-post-content p {
  max-width: 780px;
}
.single-post-content img {
  width: auto;
  max-width: min(100%, 680px);
  height: auto;
  margin: 24px auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(20, 24, 32, .08);
}
.single-post-content .infograph,
.single-post-content .media-thumb {
  max-width: 360px;
  margin: 28px auto;
}
.single-post-content .infograph img,
.single-post-content .media-thumb img {
  max-height: 520px;
  object-fit: contain;
  box-shadow: none;
}
.single-post-content .infograph-call {
  margin-top: 10px;
  text-align: center;
  font-size: 15px;
}

/* ── ADMIN BAR COMPENSATION ── */
.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
@media (max-width: 768px) {
  .service-page-content .content-body .serivceslider,
  .service-page-content .content-body .galleryslidersection .slider {
    grid-template-columns: 1fr 1fr;
  }
  .service-page-content .content-body .serviceblock .wrap-inner {
    align-items: flex-start;
  }
  .service-page-content .content-body .serviceinner ul,
  .service-page-content .content-body .servicedesc ul,
  .service-page-content .content-body .emergencysmcdec ul {
    grid-template-columns: 1fr 1fr;
  }
  .doctors-page-content {
    padding-top: 48px;
    padding-bottom: 56px;
  }
  .doctors-page-heading h2 {
    font-size: 34px;
  }
  .doctors-page-heading p {
    font-size: 17px;
  }
  .doctors-page-content .doctors-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .dr-card-photo {
    width: 126px;
    height: 126px;
    margin-top: 34px;
  }
  .dr-card-name {
    font-size: 20px;
  }
  .dr-card-cred,
  .dr-card-spec {
    font-size: 16px;
  }
  .content-body .otherservicesec .row,
  .content-body .hmsevlistrowblock .row {
    grid-template-columns: 1fr 1fr;
  }
  .google-reviews-panel {
    grid-template-columns: 1fr;
  }
  .google-reviews-map iframe {
    min-height: 300px;
  }
}
@media (max-width: 520px) {
  .service-page-content .content-body .serivceslider,
  .service-page-content .content-body .galleryslidersection .slider {
    grid-template-columns: 1fr;
  }
  .about-page-content .content-body table {
    border-spacing: 0;
    margin: 28px 0 44px;
  }
  .about-page-content .content-body table,
  .about-page-content .content-body thead,
  .about-page-content .content-body tbody,
  .about-page-content .content-body tr,
  .about-page-content .content-body th,
  .about-page-content .content-body td {
    display: block;
    width: 100%;
  }
  .about-page-content .content-body table th,
  .about-page-content .content-body table td {
    text-align: left;
  }
  .about-page-content .mver-comparison {
    border-radius: 14px;
  }
  .about-page-content .mver-comparison table {
    display: table;
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    margin: 0;
    font-size: 12px;
  }
  .about-page-content .mver-comparison thead {
    display: table-header-group;
  }
  .about-page-content .mver-comparison tbody {
    display: table-row-group;
  }
  .about-page-content .mver-comparison tr {
    display: table-row;
  }
  .about-page-content .mver-comparison th,
  .about-page-content .mver-comparison td {
    display: table-cell;
    width: auto;
    padding: 12px 6px;
    text-align: center;
  }
  .about-page-content .mver-comparison thead th:first-child,
  .about-page-content .mver-comparison tbody th {
    width: 52%;
    font-size: 12px;
    text-align: left;
  }
  .about-page-content .mver-comparison thead th {
    font-size: 10px;
    letter-spacing: .01em;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .about-page-content .mver-comparison thead th:nth-child(2),
  .about-page-content .mver-comparison thead th:nth-child(3),
  .about-page-content .mver-comparison tbody td {
    width: 24%;
  }
  .about-page-content .mver-comparison__icon {
    width: 26px;
    height: 26px;
  }
  .about-page-content .mver-comparison__icon::before {
    font-size: 16px;
  }
  .about-page-content .galleryslidersection .slider-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .insurance-page-content .content-body .serviceblock .wrap-inner,
  .insurance-page-content .content-body .serviceinner ul,
  .insurance-page-content .content-body .servicedesc ul {
    display: block;
  }
  .insurance-page-content .content-body .serviceinner li,
  .insurance-page-content .content-body .servicedesc li {
    margin-bottom: 10px;
  }
  .insurance-page-content .content-body .serviceimg {
    width: 100%;
    margin: 24px 0;
  }
  .service-page-content .content-body .serviceinner ul,
  .service-page-content .content-body .servicedesc ul,
  .service-page-content .content-body .emergencysmcdec ul {
    grid-template-columns: 1fr;
  }
  .service-page-content .content-body .serivceslider img,
  .service-page-content .content-body .galleryslidersection img {
    height: 190px;
  }
  .service-page-content .content-body .serviceimg {
    aspect-ratio: 4 / 3;
  }
  .doctors-page-content .doctors-grid {
    grid-template-columns: 1fr;
  }
  .dr-card-body {
    padding-bottom: 34px;
  }
  .content-body .row,
  .content-body .wrap-inner,
  .content-body .urgentcarerow {
    gap: 16px;
  }
  .content-body .otherservicesec .row,
  .content-body .hmsevlistrowblock .row {
    grid-template-columns: 1fr;
  }
  .medical-review-badge {
    align-items: flex-start;
    border-radius: 14px;
  }
  .single-post-header {
    display: block;
  }
  .single-post-header .medical-review-badge {
    margin-top: 14px;
  }
  .single-post-content img {
    max-width: 100%;
  }
  .google-reviews-panel {
    padding: 20px;
  }
  .google-reviews-actions {
    display: grid;
  }
  .google-reviews-actions a {
    width: 100%;
    text-align: center;
  }
}
