:root {
  color-scheme: light;
  --mdc-black: #050505;
  --mdc-ink: #111719;
  --mdc-muted: #5d686c;
  --mdc-green: #84c57d;
  --mdc-green-dark: #4f9d53;
  --mdc-green-deep: #2f6f63;
  --mdc-green-rich: #3f8b70;
  --mdc-aqua: #acd9d6;
  --mdc-aqua-soft: #eef9f8;
  --mdc-magenta: #c2449d;
  --mdc-magenta-dark: #a63282;
  --mdc-paper: #fbfdfc;
  --mdc-white: #ffffff;
  --mdc-line: #dcebe9;
  --mdc-shadow: 0 18px 46px rgba(17, 23, 25, 0.12);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mdc-ink);
  background: var(--mdc-white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.admin-bar .mdc-site-header {
  top: 32px;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mdc-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(170px, 250px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 118px;
  padding: 18px clamp(24px, 5vw, 80px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 235, 233, 0.95);
  box-shadow: 0 10px 28px rgba(5, 5, 5, 0.06);
  backdrop-filter: blur(16px);
}

.mdc-logo-wrap,
.mdc-logo-link,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  width: min(250px, 28vw);
}

.mdc-logo-link img,
.custom-logo-link img {
  width: auto;
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.mdc-primary-nav {
  justify-self: center;
}

.mdc-menu,
.mdc-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mdc-menu {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 18px);
}

.mdc-menu li {
  position: relative;
}

.mdc-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 38px;
  padding: 8px 4px;
  color: var(--mdc-black);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mdc-menu a::after {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 0;
  height: 3px;
  background: transparent;
  content: "";
}

.mdc-menu a:hover,
.mdc-menu a:focus-visible,
.mdc-menu a.is-active,
.mdc-menu .current-menu-item > a {
  color: var(--mdc-magenta-dark);
  outline: none;
}

.mdc-menu a:hover::after,
.mdc-menu a:focus-visible::after,
.mdc-menu a.is-active::after,
.mdc-menu .current-menu-item > a::after {
  background: var(--mdc-green);
}

.mdc-menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  min-width: 210px;
  padding: 10px;
  background: var(--mdc-white);
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  box-shadow: var(--mdc-shadow);
}

.mdc-menu li:hover > .sub-menu,
.mdc-menu li:focus-within > .sub-menu {
  display: grid;
}

.mdc-menu .sub-menu a {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 6px;
}

.mdc-menu .sub-menu a::after {
  display: none;
}

.mdc-menu .sub-menu a:hover,
.mdc-menu .sub-menu a:focus-visible {
  background: var(--mdc-aqua-soft);
}

.mdc-header-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.mdc-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mdc-magenta-dark);
  font-size: 0.96rem;
  font-weight: 900;
}

.mdc-header-phone svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--mdc-green-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.mdc-appointment-button,
.mdc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 5px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.mdc-appointment-button,
.mdc-button-primary {
  color: var(--mdc-white);
  background: var(--mdc-magenta);
  box-shadow: 0 12px 26px rgba(194, 68, 157, 0.22);
}

.mdc-appointment-button:hover,
.mdc-appointment-button:focus-visible,
.mdc-button-primary:hover,
.mdc-button-primary:focus-visible {
  color: var(--mdc-white);
  background: var(--mdc-magenta-dark);
  outline: none;
  transform: translateY(-1px);
}

.mdc-button-secondary {
  color: var(--mdc-ink);
  background: var(--mdc-white);
  border: 1px solid #c9deda;
}

.mdc-button-secondary:hover,
.mdc-button-secondary:focus-visible {
  color: var(--mdc-magenta-dark);
  background: var(--mdc-aqua-soft);
  outline: none;
  transform: translateY(-1px);
}

.mdc-button-light {
  color: var(--mdc-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.mdc-button-light:hover,
.mdc-button-light:focus-visible {
  color: var(--mdc-black);
  background: var(--mdc-green);
  border-color: var(--mdc-green);
}

.mdc-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--mdc-line);
  border-radius: 6px;
  background: var(--mdc-white);
  cursor: pointer;
}

.mdc-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--mdc-black);
}

.mdc-homepage h1,
.mdc-homepage h2,
.mdc-homepage h3,
.mdc-content-page h1 {
  margin-top: 0;
  color: var(--mdc-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.mdc-homepage p,
.mdc-content-page p {
  overflow-wrap: anywhere;
}

.mdc-seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(26px, 4.5vw, 58px);
  align-items: center;
  padding: clamp(50px, 6vw, 82px) clamp(24px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(238, 249, 248, 0.9) 0%, rgba(255, 255, 255, 0.96) 48%, rgba(255, 255, 255, 1) 100%);
  border-bottom: 1px solid var(--mdc-line);
}

.mdc-seo-hero-copy {
  max-width: 640px;
}

.mdc-seo-hero h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 4.35vw, 4.45rem);
  line-height: 1.06;
}

.mdc-seo-hero-copy p:not(.mdc-eyebrow) {
  max-width: 580px;
  margin: 0;
  color: #35464b;
  font-size: 1.06rem;
  line-height: 1.72;
}

.mdc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.mdc-seo-hero .mdc-button {
  min-height: 50px;
  padding-inline: 20px;
}

.mdc-seo-hero-media {
  overflow: hidden;
  border: 1px solid rgba(220, 235, 233, 0.9);
  border-radius: 6px;
  background: var(--mdc-aqua-soft);
  box-shadow: 0 16px 38px rgba(17, 23, 25, 0.08);
}

.mdc-seo-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.mdc-local-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--mdc-line);
  border-bottom: 1px solid var(--mdc-line);
  background:
    linear-gradient(90deg, rgba(238, 249, 248, 0.96), rgba(255, 255, 255, 0.98));
  color: var(--mdc-ink);
}

.mdc-local-strip div {
  min-height: 88px;
  padding: 20px clamp(22px, 4vw, 56px);
  border-left: 1px solid var(--mdc-line);
}

.mdc-local-strip div:first-child {
  border-left: 0;
}

.mdc-local-strip span {
  display: block;
  margin-bottom: 4px;
  color: var(--mdc-green-deep);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mdc-local-strip strong {
  display: block;
  color: #20373b;
  font-size: 0.96rem;
  line-height: 1.35;
}

.mdc-content-band {
  padding: clamp(64px, 8vw, 98px) clamp(24px, 5vw, 80px);
  background: var(--mdc-paper);
}

.mdc-white-band {
  background: var(--mdc-white);
}

.mdc-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.mdc-copy-block {
  max-width: 820px;
}

.mdc-copy-block h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.mdc-copy-block p:not(.mdc-eyebrow) {
  margin: 0;
  color: #3e4e53;
  font-size: 1.05rem;
}

.mdc-legal-hero {
  padding: clamp(54px, 7vw, 86px) clamp(24px, 5vw, 80px);
  background:
    radial-gradient(circle at 88% 16%, rgba(172, 217, 214, 0.32), transparent 32%),
    linear-gradient(120deg, var(--mdc-white), var(--mdc-aqua-soft));
  border-bottom: 1px solid var(--mdc-line);
}

.mdc-legal-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.05;
}

.mdc-legal-hero p:not(.mdc-eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #35464b;
  font-size: 1.08rem;
}

.mdc-legal-content {
  padding: clamp(48px, 7vw, 78px) clamp(24px, 5vw, 80px);
  background: var(--mdc-paper);
}

.mdc-legal-card,
.mdc-sitemap-card {
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  background: var(--mdc-white);
  box-shadow: 0 12px 30px rgba(17, 23, 25, 0.06);
}

.mdc-legal-card {
  max-width: 980px;
  padding: clamp(26px, 4vw, 46px);
}

.mdc-legal-card h2,
.mdc-sitemap-card h2 {
  margin: 28px 0 10px;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.mdc-legal-card h2:first-of-type,
.mdc-sitemap-card h2:first-child {
  margin-top: 0;
}

.mdc-legal-card p,
.mdc-legal-card li,
.mdc-sitemap-card p,
.mdc-sitemap-card li {
  color: #39494e;
  font-size: 1rem;
}

.mdc-legal-card a,
.mdc-sitemap-card a {
  color: var(--mdc-green-deep);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.mdc-legal-updated {
  margin: 0 0 24px;
  color: var(--mdc-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.mdc-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1040px;
}

.mdc-sitemap-card {
  padding: clamp(22px, 3vw, 32px);
}

.mdc-sitemap-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.mdc-info-panel,
.mdc-service-card,
.mdc-faq-item {
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  background: var(--mdc-white);
  box-shadow: 0 12px 30px rgba(17, 23, 25, 0.06);
}

.mdc-info-panel {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.mdc-info-panel h2 {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 950;
}

.mdc-info-panel address {
  color: var(--mdc-muted);
  font-style: normal;
}

.mdc-info-panel a {
  color: var(--mdc-magenta-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mdc-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin: 38px auto 0;
}

.mdc-service-card {
  display: grid;
  align-content: start;
  min-height: 245px;
  padding: 26px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.mdc-service-card:hover,
.mdc-service-card:focus-visible {
  border-color: rgba(194, 68, 157, 0.45);
  box-shadow: 0 18px 38px rgba(17, 23, 25, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.mdc-service-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 1px solid #cfe5e2;
  border-radius: 50%;
  color: var(--mdc-magenta-dark);
  font-weight: 950;
}

.mdc-service-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.mdc-service-card p {
  margin: 0;
  color: var(--mdc-muted);
}

.mdc-faq-list {
  display: grid;
  gap: 14px;
}

.mdc-faq-item {
  padding: 22px;
}

.mdc-faq-item h3 {
  margin: 0 0 8px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 950;
}

.mdc-faq-item p {
  margin: 0;
  color: var(--mdc-muted);
}

.mdc-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 7vw, 82px) clamp(24px, 5vw, 80px);
  color: var(--mdc-white);
  background:
    linear-gradient(135deg, rgba(194, 68, 157, 0.28), transparent 42%),
    linear-gradient(120deg, var(--mdc-green-deep), var(--mdc-green-rich));
}

.mdc-final-cta h2 {
  margin-bottom: 12px;
  color: var(--mdc-white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.mdc-final-cta p:not(.mdc-eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.mdc-final-cta .mdc-eyebrow {
  color: var(--mdc-green);
}

.mdc-final-cta .mdc-hero-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.mdc-hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.42fr) minmax(0, 0.58fr);
  min-height: 545px;
  background: var(--mdc-white);
  overflow: hidden;
}

.mdc-hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(56px, 7vw, 92px) clamp(24px, 6vw, 82px);
}

.mdc-eyebrow {
  position: relative;
  margin: 0 0 18px;
  padding-left: 21px;
  color: var(--mdc-green-dark);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mdc-eyebrow::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--mdc-magenta);
  content: "";
  transform: translateY(-50%);
}

.mdc-hero h1 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 1.03;
}

.mdc-hero-copy p:not(.mdc-eyebrow) {
  max-width: 520px;
  margin: 0 0 34px;
  color: #35464b;
  font-size: 1.08rem;
}

.mdc-hero-media {
  min-height: 545px;
}

.mdc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mdc-mission {
  padding: clamp(64px, 8vw, 88px) clamp(24px, 5vw, 80px);
  background:
    radial-gradient(circle at 12% 12%, rgba(172, 217, 214, 0.48), transparent 34%),
    linear-gradient(180deg, #f6fcfb 0%, var(--mdc-aqua-soft) 100%);
}

.mdc-section-heading {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

.mdc-eyebrow-centered {
  display: inline-flex;
  margin-bottom: 8px;
}

.mdc-section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.mdc-section-heading p:not(.mdc-eyebrow) {
  margin: 0 auto;
  color: #3e4e53;
  font-size: 1.04rem;
}

.mdc-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  margin: 58px auto 0;
}

.mdc-value-item {
  min-height: 180px;
  padding: 0 clamp(20px, 3vw, 36px);
  text-align: center;
  border-left: 1px solid rgba(17, 23, 25, 0.1);
}

.mdc-value-item:first-child {
  border-left: 0;
}

.mdc-value-item svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  fill: none;
  stroke: var(--mdc-magenta);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.mdc-value-item h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.mdc-value-item p {
  max-width: 210px;
  margin: 0 auto;
  color: #46575c;
  font-size: 0.94rem;
}

.mdc-team-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 8vw, 92px) clamp(24px, 5vw, 80px);
  background: var(--mdc-white);
}

.mdc-team-copy {
  justify-self: start;
  max-width: 360px;
}

.mdc-team-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 2.95rem);
  line-height: 1.08;
}

.mdc-team-copy p:not(.mdc-eyebrow) {
  margin: 0 0 28px;
  color: #3f4f54;
}

.mdc-team-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.1);
}

.mdc-team-media img {
  width: 100%;
  aspect-ratio: 2.1 / 1;
  object-fit: cover;
}

.mdc-site-footer {
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(172, 217, 214, 0.2), transparent 38%),
    linear-gradient(120deg, var(--mdc-green-deep), #265f62);
}

.mdc-footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.82fr 1.2fr 1.85fr 0.7fr;
  gap: clamp(22px, 3vw, 36px);
  padding: 38px clamp(24px, 5vw, 80px);
}

.mdc-footer-inner > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: clamp(22px, 3vw, 34px);
}

.mdc-footer-logo {
  display: inline-flex;
  width: min(230px, 100%);
  margin-bottom: 18px;
  background: transparent;
}

.mdc-footer-logo img {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.mdc-footer-brand p,
.mdc-footer-column p,
.mdc-footer-contact address,
.mdc-footer-contact a,
.mdc-footer-links a,
.mdc-hours {
  font-size: 0.92rem;
}

.mdc-footer-brand p {
  max-width: 240px;
  margin: 0;
}

.mdc-footer-column h2 {
  margin: 0 0 14px;
  color: var(--mdc-white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.mdc-footer-links {
  display: grid;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mdc-footer-links a {
  position: relative;
  display: inline-flex;
  padding-left: 16px;
}

.mdc-footer-links a::before {
  position: absolute;
  left: 0;
  color: var(--mdc-green);
  content: "\203A";
  font-weight: 900;
}

.mdc-footer-contact {
  display: grid;
  align-content: start;
  gap: 14px;
}

.mdc-footer-contact address {
  display: grid;
  gap: 2px;
  margin: 0;
  font-style: normal;
}

.mdc-footer-contact a:hover,
.mdc-footer-contact a:focus-visible,
.mdc-footer-links a:hover,
.mdc-footer-links a:focus-visible,
.mdc-footer-bottom a:hover,
.mdc-footer-bottom a:focus-visible {
  color: var(--mdc-green);
  outline: none;
}

.mdc-hours {
  display: grid;
  gap: 10px;
  margin: 0;
}

.mdc-hours div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 8px;
}

.mdc-hours dt,
.mdc-hours dd {
  margin: 0;
}

.mdc-hours dt {
  color: var(--mdc-white);
  font-weight: 850;
}

.mdc-hours dd {
  white-space: nowrap;
}

.mdc-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mdc-social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--mdc-aqua);
  border-radius: 50%;
  color: var(--mdc-white);
  font-size: 1.08rem;
  font-weight: 900;
}

.mdc-social-links a:hover,
.mdc-social-links a:focus-visible {
  color: var(--mdc-black);
  background: var(--mdc-green);
  border-color: var(--mdc-green);
  outline: none;
}

.mdc-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(24px, 5vw, 80px);
  background: rgba(9, 77, 73, 0.5);
  font-size: 0.85rem;
}

.mdc-footer-bottom p {
  margin: 0;
}

.mdc-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mdc-content-page {
  min-height: 52vh;
  padding: clamp(56px, 7vw, 92px) clamp(24px, 5vw, 80px);
  background: var(--mdc-paper);
}

.mdc-post {
  max-width: 920px;
  margin: 0 auto;
}

.mdc-post h1 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
}

.mdc-post-content {
  color: #344449;
  font-size: 1.05rem;
}

.mdc-about-page {
  background: var(--mdc-white);
}

.mdc-about-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.43fr) minmax(0, 0.57fr);
  min-height: 410px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--mdc-white) 0%, rgba(255, 255, 255, 0.96) 43%, rgba(238, 249, 248, 0.12) 100%),
    var(--mdc-white);
  border-bottom: 1px solid var(--mdc-line);
}

.mdc-about-hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(48px, 6vw, 78px) clamp(24px, 5vw, 82px);
}

.mdc-about-hero h1 {
  max-width: 590px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 4.8vw, 4.35rem);
  line-height: 1.03;
}

.mdc-about-hero-copy p:not(.mdc-eyebrow) {
  max-width: 560px;
  margin: 0;
  color: #344449;
  font-size: 1.02rem;
}

.mdc-about-hero-media {
  min-height: 410px;
}

.mdc-about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mdc-about-values {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100% - clamp(36px, 8vw, 128px), 1380px);
  margin: -36px auto 0;
  overflow: hidden;
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 20%, rgba(132, 197, 125, 0.25), transparent 30%),
    linear-gradient(120deg, #f6fffe, var(--mdc-aqua-soft));
  box-shadow: 0 16px 34px rgba(17, 23, 25, 0.08);
}

.mdc-about-value {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 20px 28px;
  border-left: 1px solid rgba(17, 23, 25, 0.1);
}

.mdc-about-value:first-child {
  border-left: 0;
}

.mdc-about-value > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--mdc-magenta);
  background: rgba(172, 217, 214, 0.62);
}

.mdc-about-value svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.mdc-about-value h2 {
  margin: 0 0 4px;
  color: var(--mdc-ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.18;
}

.mdc-about-value p {
  margin: 0;
  color: #394a4f;
  font-size: 0.88rem;
  line-height: 1.45;
}

.mdc-about-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(270px, 0.82fr) minmax(520px, 1.42fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
  padding: clamp(34px, 4vw, 48px) clamp(24px, 5vw, 80px) clamp(46px, 5vw, 70px);
  background: var(--mdc-white);
}

.mdc-about-story h2,
.mdc-about-team h2 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 2.4vw, 2.45rem);
  line-height: 1.08;
}

.mdc-about-story p:not(.mdc-eyebrow),
.mdc-about-team > p:not(.mdc-eyebrow) {
  margin: 0;
  color: #394a4f;
  font-size: 0.96rem;
}

.mdc-tooth-line {
  max-width: 360px;
  margin-top: 34px;
  color: var(--mdc-green-deep);
}

.mdc-tooth-line svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mdc-about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mdc-about-stats article,
.mdc-about-member {
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  background: var(--mdc-white);
  box-shadow: 0 12px 28px rgba(17, 23, 25, 0.07);
}

.mdc-about-stats article {
  display: grid;
  align-content: start;
  min-height: 128px;
  padding: 22px;
  text-align: center;
}

.mdc-about-stats span {
  display: inline-grid;
  place-items: center;
  min-width: 74px;
  min-height: 34px;
  padding: 6px 12px;
  margin: 0 auto 10px;
  border-radius: 999px;
  color: var(--mdc-white);
  background: var(--mdc-green-rich);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mdc-about-stats article:nth-child(even) span {
  background: var(--mdc-magenta);
}

.mdc-about-stats h3 {
  margin: 0 0 6px;
  font-size: 1.18rem;
  line-height: 1.12;
}

.mdc-about-stats p {
  margin: 0;
  color: var(--mdc-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.mdc-about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mdc-about-member {
  overflow: hidden;
}

.mdc-about-avatar {
  display: grid;
  place-items: center;
  min-height: 126px;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(145deg, rgba(172, 217, 214, 0.95), rgba(132, 197, 125, 0.32));
}

.mdc-about-member:nth-child(2n) .mdc-about-avatar {
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(145deg, rgba(242, 222, 237, 0.95), rgba(194, 68, 157, 0.2));
}

.mdc-about-avatar span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 3px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  color: var(--mdc-white);
  background: var(--mdc-green-deep);
  font-size: 1.2rem;
  font-weight: 950;
}

.mdc-about-member:nth-child(2n) .mdc-about-avatar span {
  background: var(--mdc-magenta-dark);
}

.mdc-about-member > div:last-child {
  min-height: 88px;
  padding: 14px 12px 16px;
  text-align: center;
}

.mdc-about-member h3 {
  margin: 0 0 5px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.18;
}

.mdc-about-member p {
  margin: 0;
  color: var(--mdc-muted);
  font-size: 0.8rem;
}

.mdc-services-page {
  background: var(--mdc-white);
}

.mdc-services-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 0.54fr);
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--mdc-white) 0%, rgba(255, 255, 255, 0.98) 40%, rgba(255, 255, 255, 0.36) 62%, rgba(255, 255, 255, 0) 100%),
    var(--mdc-white);
}

.mdc-services-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(44px, 5vw, 72px) clamp(24px, 5vw, 80px);
}

.mdc-services-hero h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4.3vw, 4rem);
  line-height: 1.03;
}

.mdc-services-hero-copy p:not(.mdc-eyebrow) {
  max-width: 590px;
  margin: 0;
  color: #344449;
  font-size: 1.02rem;
}

.mdc-services-hero-media {
  min-height: 300px;
  margin-left: -15vw;
}

.mdc-services-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.mdc-services-panel {
  position: relative;
  z-index: 3;
  width: min(100% - clamp(36px, 8vw, 128px), 1400px);
  margin: -44px auto 0;
  padding-bottom: 18px;
}

.mdc-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mdc-service-tile {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 158px;
  padding: 28px;
  border: 1px solid rgba(220, 235, 233, 0.82);
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 16%, rgba(132, 197, 125, 0.18), transparent 34%),
    rgba(248, 253, 252, 0.94);
  box-shadow: 0 14px 30px rgba(17, 23, 25, 0.05);
}

.mdc-service-icon {
  color: var(--mdc-green-deep);
}

.mdc-service-icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.mdc-service-tile h2 {
  margin: 0 0 7px;
  color: var(--mdc-ink);
  font-size: 1.18rem;
  line-height: 1.15;
}

.mdc-service-tile p {
  margin: 0 0 14px;
  color: #344449;
  font-size: 0.93rem;
  line-height: 1.55;
}

.mdc-service-tile a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mdc-green-deep);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mdc-service-tile a:hover,
.mdc-service-tile a:focus-visible {
  color: var(--mdc-magenta-dark);
  outline: none;
}

.mdc-services-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 14px;
  padding: 22px 30px;
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 26%, rgba(132, 197, 125, 0.2), transparent 28%),
    linear-gradient(120deg, #f4fffe, var(--mdc-aqua-soft));
}

.mdc-service-cta-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--mdc-green-deep);
  background: rgba(172, 217, 214, 0.72);
}

.mdc-service-cta-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.mdc-services-cta h2 {
  margin: 0 0 2px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.mdc-services-cta p {
  margin: 0;
  color: #344449;
}

.mdc-patients-page {
  background: var(--mdc-white);
}

.mdc-patients-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.52fr) minmax(0, 0.48fr);
  min-height: 330px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--mdc-aqua-soft) 0%, rgba(238, 249, 248, 0.96) 48%, rgba(238, 249, 248, 0.42) 70%, rgba(238, 249, 248, 0) 100%),
    var(--mdc-aqua-soft);
}

.mdc-patients-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(50px, 6vw, 78px) clamp(24px, 5vw, 80px);
}

.mdc-patients-hero h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.6vw, 4.1rem);
  line-height: 1.03;
}

.mdc-patients-hero-copy p:not(.mdc-eyebrow) {
  max-width: 520px;
  margin: 0;
  color: #344449;
  font-size: 1.12rem;
}

.mdc-patients-hero-media {
  min-height: 330px;
  margin-left: -18vw;
}

.mdc-patients-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.mdc-patient-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100% - clamp(36px, 8vw, 128px), 920px);
  margin: 22px auto 0;
  border-bottom: 1px solid var(--mdc-line);
}

.mdc-patient-tabs a {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 86px;
  padding: 8px 20px 18px;
  color: #17272b;
  font-size: 0.82rem;
  font-weight: 750;
  text-align: center;
  border-left: 1px solid var(--mdc-line);
}

.mdc-patient-tabs a:first-child {
  border-left: 0;
}

.mdc-patient-tabs a::after {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -1px;
  height: 3px;
  background: transparent;
  content: "";
}

.mdc-patient-tabs a.is-active::after,
.mdc-patient-tabs a:hover::after,
.mdc-patient-tabs a:focus-visible::after {
  background: var(--mdc-green-deep);
}

.mdc-patient-tabs a.is-active,
.mdc-patient-tabs a:hover,
.mdc-patient-tabs a:focus-visible {
  color: var(--mdc-green-deep);
  outline: none;
}

.mdc-patient-tabs svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.mdc-patients-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: start;
  width: min(100% - clamp(36px, 8vw, 128px), 900px);
  margin: 32px auto 42px;
}

.mdc-new-patient-copy h2,
.mdc-bring-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.12;
}

.mdc-new-patient-copy p {
  margin: 0 0 20px;
  color: #344449;
}

.mdc-check-list,
.mdc-bring-panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mdc-check-list {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.mdc-check-list li {
  position: relative;
  padding-left: 34px;
  color: #344449;
}

.mdc-check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: var(--mdc-white);
  background: var(--mdc-green-deep);
  content: "\2713";
  font-size: 0.73rem;
  font-weight: 950;
  line-height: 1;
}

.mdc-bring-panel {
  padding: 30px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 18%, rgba(132, 197, 125, 0.2), transparent 34%),
    linear-gradient(120deg, #f4fffe, var(--mdc-aqua-soft));
}

.mdc-bring-panel ul {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.mdc-bring-panel li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: #344449;
}

.mdc-bring-panel svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--mdc-green-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.mdc-reviews-page {
  background: var(--mdc-white);
}

.mdc-reviews-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.43fr) minmax(0, 0.57fr);
  min-height: 345px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--mdc-aqua-soft) 0%, rgba(238, 249, 248, 0.98) 40%, rgba(238, 249, 248, 0.34) 67%, rgba(238, 249, 248, 0) 100%),
    var(--mdc-aqua-soft);
}

.mdc-reviews-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(48px, 6vw, 78px) clamp(24px, 5vw, 80px);
}

.mdc-reviews-hero h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.6vw, 4.15rem);
  line-height: 1.03;
}

.mdc-reviews-hero-copy p:not(.mdc-eyebrow) {
  max-width: 560px;
  margin: 0;
  color: #344449;
  font-size: 1.04rem;
}

.mdc-reviews-hero-media {
  min-height: 345px;
  margin-left: -12vw;
}

.mdc-reviews-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.mdc-review-summary,
.mdc-review-cards,
.mdc-review-cta {
  width: min(100% - clamp(36px, 8vw, 128px), 1380px);
  margin-inline: auto;
}

.mdc-review-summary {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1fr;
  margin-top: -48px;
  overflow: hidden;
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--mdc-shadow);
}

.mdc-review-summary article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 110px;
  padding: 22px 26px;
  border-left: 1px solid var(--mdc-line);
}

.mdc-review-summary article:first-child {
  border-left: 0;
}

.mdc-review-source {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--mdc-white);
  font-size: 2rem;
  font-weight: 950;
}

.mdc-review-google {
  color: var(--mdc-magenta);
  background: conic-gradient(#4385f5 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  -webkit-text-stroke: 3px var(--mdc-white);
}

.mdc-review-facebook {
  background: #1877f2;
}

.mdc-review-overall {
  background: var(--mdc-green-deep);
}

.mdc-review-overall svg,
.mdc-review-cta-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.mdc-review-summary h2 {
  margin: 0 0 3px;
  color: var(--mdc-ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  font-weight: 900;
}

.mdc-review-summary p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  margin: 0;
  color: #f5a400;
  line-height: 1.1;
}

.mdc-review-summary p strong {
  color: var(--mdc-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.95rem;
  line-height: 1;
}

.mdc-review-summary small {
  color: var(--mdc-muted);
  font-size: 0.84rem;
}

.mdc-review-summary .mdc-review-percent {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 4px;
}

.mdc-review-percent strong {
  color: var(--mdc-green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  line-height: 1;
}

.mdc-review-percent span {
  color: #344449;
  font-size: 0.88rem;
  line-height: 1.35;
}

.mdc-review-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.mdc-review-card {
  display: grid;
  align-content: start;
  min-height: 248px;
  padding: 24px;
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  background: var(--mdc-white);
  box-shadow: 0 12px 28px rgba(17, 23, 25, 0.08);
}

.mdc-review-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--mdc-muted);
  font-size: 0.78rem;
}

.mdc-stars {
  color: #f5a400;
  font-size: 1rem;
  letter-spacing: 1px;
}

.mdc-review-card > p {
  min-height: 112px;
  margin: 0 0 18px;
  color: #213238;
  font-size: 0.94rem;
  line-height: 1.58;
}

.mdc-review-author {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--mdc-line);
}

.mdc-review-author > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--mdc-green-deep);
  background: rgba(172, 217, 214, 0.7);
  font-weight: 900;
}

.mdc-review-author h2 {
  margin: 0 0 2px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 950;
}

.mdc-review-author small {
  color: var(--mdc-muted);
  font-size: 0.78rem;
}

.mdc-review-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 0;
  padding: 22px 30px;
  border: 1px solid var(--mdc-line);
  border-radius: 8px 8px 0 0;
  background:
    radial-gradient(circle at 10% 26%, rgba(132, 197, 125, 0.2), transparent 28%),
    linear-gradient(120deg, #f4fffe, var(--mdc-aqua-soft));
}

.mdc-review-cta-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--mdc-white);
  background: linear-gradient(145deg, var(--mdc-green-deep), var(--mdc-green-rich));
}

.mdc-review-cta h2 {
  margin: 0 0 2px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.mdc-review-cta p {
  margin: 0;
  color: #344449;
}

.mdc-contact-page {
  background: var(--mdc-white);
}

.mdc-contact-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  min-height: 455px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--mdc-white) 0%, rgba(255, 255, 255, 0.97) 38%, rgba(255, 255, 255, 0.42) 62%, rgba(255, 255, 255, 0) 100%),
    var(--mdc-aqua-soft);
}

.mdc-contact-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(48px, 6vw, 78px) clamp(24px, 5vw, 80px);
}

.mdc-contact-hero h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.6vw, 4.15rem);
  line-height: 1.03;
}

.mdc-contact-hero-copy > p:not(.mdc-eyebrow) {
  max-width: 500px;
  margin: 0;
  color: #344449;
  font-size: 1.05rem;
}

.mdc-contact-hero-media {
  min-height: 455px;
  margin-left: -15vw;
}

.mdc-contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.mdc-contact-quick-links {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.mdc-contact-action {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.mdc-contact-action > span,
.mdc-contact-info-row > span,
.mdc-contact-highlight > span {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--mdc-green-deep);
  background: rgba(172, 217, 214, 0.58);
}

.mdc-contact-action svg,
.mdc-contact-info-row svg,
.mdc-contact-highlight svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.mdc-contact-action strong,
.mdc-contact-action em {
  grid-column: 2;
  font-style: normal;
}

.mdc-contact-action strong {
  color: var(--mdc-ink);
  font-weight: 950;
  line-height: 1.2;
}

.mdc-contact-action em {
  margin-top: -12px;
  color: var(--mdc-green-deep);
  font-size: 1.08rem;
  font-weight: 900;
}

.mdc-contact-action:hover em,
.mdc-contact-action:focus-visible em {
  color: var(--mdc-magenta-dark);
}

.mdc-contact-layout,
.mdc-map-wrap,
.mdc-contact-highlights {
  width: min(100% - clamp(36px, 8vw, 128px), 1380px);
  margin-inline: auto;
}

.mdc-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(360px, 0.98fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 34px;
}

.mdc-contact-form-card,
.mdc-contact-info-card {
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(17, 23, 25, 0.08);
}

.mdc-contact-form-card {
  padding: clamp(26px, 4vw, 40px);
  background: var(--mdc-white);
}

.mdc-contact-form-card h2,
.mdc-contact-info-card h2,
.mdc-map-card strong,
.mdc-contact-highlight h2 {
  margin: 0;
  color: var(--mdc-ink);
}

.mdc-contact-form-card h2,
.mdc-contact-info-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.12;
}

.mdc-contact-form-card > p {
  margin: 0 0 22px;
  color: #344449;
}

.mdc-contact-form {
  display: grid;
  gap: 16px;
}

.mdc-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mdc-contact-form input,
.mdc-contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--mdc-ink);
  font: inherit;
  border: 1px solid #bfd2d0;
  border-radius: 6px;
  background: var(--mdc-white);
  outline: none;
}

.mdc-contact-form textarea {
  min-height: 134px;
  resize: vertical;
}

.mdc-contact-form input:focus,
.mdc-contact-form textarea:focus {
  border-color: var(--mdc-green-deep);
  box-shadow: 0 0 0 3px rgba(132, 197, 125, 0.22);
}

.mdc-form-alert {
  padding: 12px 14px;
  color: #7b1f59;
  font-weight: 800;
  border: 1px solid rgba(194, 68, 157, 0.28);
  border-radius: 6px;
  background: rgba(242, 222, 237, 0.72);
}

.mdc-captcha {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--mdc-line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(238, 249, 248, 0.9), rgba(255, 255, 255, 0.98));
}

.mdc-captcha label {
  display: grid;
  gap: 8px;
}

.mdc-captcha-label {
  color: var(--mdc-green-deep);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mdc-captcha-question {
  color: var(--mdc-ink);
  font-weight: 850;
}

.mdc-captcha input {
  max-width: 180px;
  min-height: 46px;
}

.mdc-captcha-help {
  margin: 0;
  color: var(--mdc-muted);
  font-size: 0.8rem;
}

.mdc-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.mdc-contact-form .mdc-button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.mdc-form-note {
  max-width: 620px;
  margin: -2px 0 0;
  color: #344449;
  font-size: 0.8rem;
  line-height: 1.45;
}

.mdc-contact-info-card {
  padding: clamp(26px, 4vw, 40px);
  background:
    radial-gradient(circle at 12% 14%, rgba(132, 197, 125, 0.18), transparent 34%),
    linear-gradient(130deg, #f7fffe, var(--mdc-aqua-soft));
}

.mdc-contact-info-list {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.mdc-contact-info-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.mdc-contact-info-row h3 {
  margin: 0 0 4px;
  color: var(--mdc-ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 950;
}

.mdc-contact-info-row p {
  margin: 0;
  color: #213238;
  line-height: 1.52;
}

.mdc-contact-info-row a:hover,
.mdc-contact-info-row a:focus-visible {
  color: var(--mdc-magenta-dark);
  outline: none;
}

.mdc-contact-hours {
  display: grid;
  gap: 8px;
  margin: 0;
}

.mdc-contact-hours div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
}

.mdc-contact-hours dt,
.mdc-contact-hours dd {
  margin: 0;
  color: #213238;
}

.mdc-map-wrap {
  position: relative;
  min-height: 235px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  background: var(--mdc-aqua-soft);
}

.mdc-map-frame {
  display: block;
  width: 100%;
  height: 235px;
  border: 0;
}

.mdc-map-card {
  position: absolute;
  top: 50%;
  left: 48%;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 18px 22px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px rgba(17, 23, 25, 0.12);
}

.mdc-map-card span {
  color: #344449;
  font-size: 0.86rem;
  line-height: 1.42;
}

.mdc-contact-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
  margin-bottom: 0;
  border: 1px solid var(--mdc-line);
  border-radius: 8px 8px 0 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(132, 197, 125, 0.17), transparent 26%),
    linear-gradient(120deg, #f7fffe, var(--mdc-aqua-soft));
  overflow: hidden;
}

.mdc-contact-highlight {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 122px;
  padding: 26px 28px;
  border-left: 1px solid rgba(17, 23, 25, 0.1);
}

.mdc-contact-highlight:first-child {
  border-left: 0;
}

.mdc-contact-highlight h2 {
  margin-bottom: 4px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.18;
}

.mdc-contact-highlight p {
  margin: 0;
  color: #344449;
  font-size: 0.86rem;
  line-height: 1.45;
}

.mdc-blog-page {
  background: var(--mdc-white);
}

.mdc-blog-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 0.54fr);
  min-height: 390px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--mdc-aqua-soft) 0%, rgba(238, 249, 248, 0.98) 42%, rgba(238, 249, 248, 0.42) 68%, rgba(238, 249, 248, 0) 100%),
    var(--mdc-aqua-soft);
}

.mdc-blog-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(48px, 6vw, 78px) clamp(24px, 5vw, 80px);
}

.mdc-blog-hero h1 {
  max-width: 670px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.6vw, 4.15rem);
  line-height: 1.03;
}

.mdc-blog-hero-copy > p:not(.mdc-eyebrow) {
  max-width: 540px;
  margin: 0;
  color: #344449;
  font-size: 1.06rem;
}

.mdc-blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.mdc-blog-hero-media {
  min-height: 390px;
  margin-left: -12vw;
}

.mdc-blog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.mdc-blog-categories,
.mdc-blog-content,
.mdc-blog-cta {
  width: min(100% - clamp(36px, 8vw, 128px), 1380px);
  margin-inline: auto;
}

.mdc-blog-categories {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -44px;
  overflow: hidden;
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--mdc-shadow);
}

.mdc-blog-categories article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 122px;
  padding: 24px 22px;
  border-left: 1px solid var(--mdc-line);
}

.mdc-blog-categories article:first-child {
  border-left: 0;
}

.mdc-blog-categories article > span,
.mdc-blog-cta-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--mdc-green-deep);
  background: rgba(172, 217, 214, 0.68);
}

.mdc-blog-categories svg,
.mdc-blog-cta-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.mdc-blog-categories h2 {
  margin: 0 0 5px;
  color: var(--mdc-ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.2;
}

.mdc-blog-categories p {
  margin: 0;
  color: #344449;
  font-size: 0.84rem;
  line-height: 1.42;
}

.mdc-blog-content {
  padding: clamp(44px, 6vw, 70px) 0 0;
}

.mdc-featured-post {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  background: var(--mdc-white);
  box-shadow: 0 16px 36px rgba(17, 23, 25, 0.09);
}

.mdc-featured-post-media,
.mdc-blog-card-media {
  display: block;
  overflow: hidden;
  background: var(--mdc-aqua-soft);
}

.mdc-featured-post-media img,
.mdc-blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.mdc-featured-post-media img {
  min-height: 360px;
}

.mdc-featured-post:hover .mdc-featured-post-media img,
.mdc-blog-card:hover .mdc-blog-card-media img {
  transform: scale(1.035);
}

.mdc-featured-post-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(28px, 4vw, 48px);
}

.mdc-post-meta {
  margin: 0 0 12px;
  color: var(--mdc-green-deep);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mdc-featured-post h2,
.mdc-blog-card h2,
.mdc-blog-cta h2 {
  margin: 0;
  color: var(--mdc-ink);
}

.mdc-featured-post h2 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.mdc-featured-post-copy > p:not(.mdc-post-meta),
.mdc-blog-card-copy > p:not(.mdc-post-meta),
.mdc-blog-cta p {
  margin: 0;
  color: #344449;
}

.mdc-featured-post-copy > p:not(.mdc-post-meta) {
  max-width: 560px;
  font-size: 1rem;
}

.mdc-post-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--mdc-green-deep);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mdc-post-link:hover,
.mdc-post-link:focus-visible,
.mdc-featured-post h2 a:hover,
.mdc-featured-post h2 a:focus-visible,
.mdc-blog-card h2 a:hover,
.mdc-blog-card h2 a:focus-visible {
  color: var(--mdc-magenta-dark);
  outline: none;
}

.mdc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.mdc-blog-card {
  overflow: hidden;
  border: 1px solid var(--mdc-line);
  border-radius: 8px;
  background: var(--mdc-white);
  box-shadow: 0 12px 28px rgba(17, 23, 25, 0.08);
}

.mdc-blog-card-media {
  height: 190px;
}

.mdc-blog-card-copy {
  padding: 24px;
}

.mdc-blog-card h2 {
  min-height: 58px;
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.16;
}

.mdc-blog-card-copy > p:not(.mdc-post-meta) {
  min-height: 76px;
  font-size: 0.92rem;
  line-height: 1.52;
}

.mdc-blog-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid var(--mdc-line);
  border-radius: 8px 8px 0 0;
  padding: 24px 30px;
  background:
    radial-gradient(circle at 10% 26%, rgba(132, 197, 125, 0.2), transparent 28%),
    linear-gradient(120deg, #f4fffe, var(--mdc-aqua-soft));
}

.mdc-blog-cta h2 {
  margin-bottom: 3px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

@media (max-width: 1360px) and (min-width: 1181px) {
  .mdc-about-main {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  }

  .mdc-about-story,
  .mdc-about-stats {
    grid-column: 1;
  }

  .mdc-about-team {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .mdc-services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mdc-service-tile {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 24px 20px;
  }
}

@media (max-width: 1180px) {
  .mdc-site-header {
    grid-template-columns: minmax(170px, 230px) auto minmax(0, 1fr);
  }

  .mdc-menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .mdc-primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: clamp(18px, 4vw, 44px);
    right: clamp(18px, 4vw, 44px);
    display: none;
    justify-self: auto;
    padding: 12px;
    background: var(--mdc-white);
    border: 1px solid var(--mdc-line);
    border-radius: 8px;
    box-shadow: var(--mdc-shadow);
  }

  .mdc-primary-nav.is-open {
    display: block;
  }

  .mdc-menu {
    display: grid;
    gap: 2px;
  }

  .mdc-menu a {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .mdc-menu a::after {
    display: none;
  }

  .mdc-menu a:hover,
  .mdc-menu a:focus-visible,
  .mdc-menu a.is-active,
  .mdc-menu .current-menu-item > a {
    background: var(--mdc-aqua-soft);
  }

  .mdc-menu .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
  }

  .mdc-header-actions {
    justify-self: end;
  }

  .mdc-seo-hero,
  .mdc-hero,
  .mdc-two-column,
  .mdc-final-cta,
  .mdc-team-preview,
  .mdc-about-hero,
  .mdc-about-main,
  .mdc-services-hero,
  .mdc-patients-hero,
  .mdc-patients-content,
  .mdc-reviews-hero {
    grid-template-columns: 1fr;
  }

  .mdc-seo-hero-media {
    max-width: 760px;
  }

  .mdc-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mdc-hero-copy {
    padding-bottom: 34px;
  }

  .mdc-hero-media {
    min-height: auto;
  }

  .mdc-hero-media img {
    aspect-ratio: 16 / 9;
  }

  .mdc-about-hero-media {
    min-height: auto;
  }

  .mdc-about-hero-media img {
    aspect-ratio: 16 / 9;
  }

  .mdc-services-hero-media {
    min-height: auto;
    margin-left: 0;
  }

  .mdc-services-hero-media img {
    aspect-ratio: 16 / 7;
  }

  .mdc-patients-hero-media {
    min-height: auto;
    margin-left: 0;
  }

  .mdc-patients-hero-media img {
    aspect-ratio: 16 / 7;
  }

  .mdc-reviews-hero-media {
    min-height: auto;
    margin-left: 0;
  }

  .mdc-reviews-hero-media img {
    aspect-ratio: 16 / 7;
  }

  .mdc-services-panel {
    margin-top: -32px;
  }

  .mdc-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mdc-review-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mdc-review-summary article:nth-child(3) {
    border-left: 0;
  }

  .mdc-review-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mdc-about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 48px);
  }

  .mdc-about-value:nth-child(3) {
    border-left: 0;
  }

  .mdc-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 0;
  }

  .mdc-value-item:nth-child(3) {
    border-left: 0;
  }

  .mdc-team-copy {
    max-width: 650px;
  }

  .mdc-about-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mdc-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mdc-hours dd {
    white-space: normal;
  }

  .mdc-footer-inner > * + * {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  body.admin-bar .mdc-site-header {
    top: 46px;
  }

  .mdc-site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 82px;
    padding: 12px 18px;
  }

  .mdc-logo-link {
    width: min(214px, 68vw);
  }

  .mdc-logo-link img,
  .custom-logo-link img {
    max-height: 58px;
  }

  .mdc-header-actions {
    grid-column: 1 / -1;
    justify-items: stretch;
    width: 100%;
  }

  .mdc-header-phone {
    display: none;
  }

  .mdc-appointment-button {
    min-height: 42px;
    width: 100%;
  }

  .mdc-primary-nav {
    left: 14px;
    right: 14px;
  }

  .mdc-seo-hero,
  .mdc-hero-copy,
  .mdc-legal-hero,
  .mdc-legal-content,
  .mdc-about-hero-copy,
  .mdc-about-main,
  .mdc-services-hero-copy,
  .mdc-patients-hero-copy,
  .mdc-reviews-hero-copy,
  .mdc-mission,
  .mdc-team-preview,
  .mdc-content-band,
  .mdc-final-cta,
  .mdc-content-page {
    padding-inline: 18px;
  }

  .mdc-seo-hero {
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .mdc-seo-hero h1 {
    margin-bottom: 14px;
    font-size: 2.42rem;
    line-height: 1.08;
  }

  .mdc-seo-hero-copy p:not(.mdc-eyebrow) {
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .mdc-hero-actions {
    width: 100%;
  }

  .mdc-hero-actions .mdc-button {
    width: 100%;
    min-height: 48px;
  }

  .mdc-seo-hero-media img {
    aspect-ratio: 16 / 9;
  }

  .mdc-local-strip {
    grid-template-columns: 1fr;
  }

  .mdc-local-strip div {
    min-height: auto;
    padding: 18px;
    border-top: 1px solid var(--mdc-line);
    border-left: 0;
  }

  .mdc-local-strip div:first-child {
    border-top: 0;
  }

  .mdc-service-grid {
    grid-template-columns: 1fr;
  }

  .mdc-sitemap-grid {
    grid-template-columns: 1fr;
  }

  .mdc-service-card {
    min-height: auto;
  }

  .mdc-hero {
    min-height: auto;
  }

  .mdc-hero-copy {
    padding-top: 48px;
  }

  .mdc-hero h1 {
    font-size: 2.75rem;
  }

  .mdc-about-hero h1 {
    font-size: 2.7rem;
  }

  .mdc-services-hero h1 {
    font-size: 2.7rem;
  }

  .mdc-patients-hero h1 {
    font-size: 2.7rem;
  }

  .mdc-reviews-hero h1 {
    font-size: 2.7rem;
  }

  .mdc-hero-media img,
  .mdc-team-media img,
  .mdc-about-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .mdc-about-values {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    margin-top: -24px;
  }

  .mdc-about-value,
  .mdc-about-value:nth-child(3) {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 18px;
    border-top: 1px solid rgba(17, 23, 25, 0.1);
    border-left: 0;
  }

  .mdc-about-value:first-child {
    border-top: 0;
  }

  .mdc-about-stats,
  .mdc-about-team-grid,
  .mdc-services-grid {
    grid-template-columns: 1fr;
  }

  .mdc-services-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .mdc-patients-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .mdc-reviews-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .mdc-services-panel {
    width: calc(100% - 36px);
  }

  .mdc-service-tile {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: auto;
    padding: 22px 18px;
  }

  .mdc-services-cta {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 22px 18px;
  }

  .mdc-services-cta .mdc-button {
    width: 100%;
  }

  .mdc-patient-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 36px);
  }

  .mdc-patient-tabs a:nth-child(odd) {
    border-left: 0;
  }

  .mdc-patients-content {
    width: calc(100% - 36px);
    margin-top: 28px;
  }

  .mdc-new-patient-copy .mdc-button {
    width: 100%;
  }

  .mdc-review-summary,
  .mdc-review-cards,
  .mdc-review-cta {
    width: calc(100% - 36px);
  }

  .mdc-review-summary {
    grid-template-columns: 1fr;
    margin-top: -28px;
  }

  .mdc-review-summary article,
  .mdc-review-summary article:nth-child(3) {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: auto;
    padding: 20px 18px;
    border-top: 1px solid var(--mdc-line);
    border-left: 0;
  }

  .mdc-review-summary article:first-child {
    border-top: 0;
  }

  .mdc-review-cards {
    grid-template-columns: 1fr;
  }

  .mdc-review-card {
    min-height: auto;
  }

  .mdc-review-card > p {
    min-height: auto;
  }

  .mdc-review-cta {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 22px 18px;
  }

  .mdc-review-cta .mdc-button {
    width: 100%;
  }

  .mdc-value-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .mdc-value-item,
  .mdc-value-item:nth-child(3) {
    min-height: auto;
    padding: 28px 0;
    border-left: 0;
    border-top: 1px solid rgba(17, 23, 25, 0.1);
  }

  .mdc-value-item:first-child {
    border-top: 0;
  }

  .mdc-footer-inner {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .mdc-footer-bottom {
    display: grid;
    padding-inline: 18px;
  }

  .mdc-footer-bottom nav {
    gap: 10px 14px;
  }
}

@media (max-width: 1180px) {
  .mdc-contact-hero,
  .mdc-contact-layout {
    grid-template-columns: 1fr;
  }

  .mdc-contact-hero-media {
    min-height: auto;
    margin-left: 0;
  }

  .mdc-contact-hero-media img {
    aspect-ratio: 16 / 7;
  }

  .mdc-contact-layout {
    gap: 22px;
  }

  .mdc-contact-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mdc-contact-highlight:nth-child(odd) {
    border-left: 0;
  }

  .mdc-contact-highlight:nth-child(n + 3) {
    border-top: 1px solid rgba(17, 23, 25, 0.1);
  }
}

@media (max-width: 760px) {
  .mdc-contact-hero-copy {
    padding: 48px 18px 34px;
  }

  .mdc-contact-hero h1 {
    font-size: 2.7rem;
  }

  .mdc-contact-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .mdc-contact-layout,
  .mdc-map-wrap,
  .mdc-contact-highlights {
    width: calc(100% - 36px);
  }

  .mdc-field-row,
  .mdc-contact-highlights {
    grid-template-columns: 1fr;
  }

  .mdc-contact-form-card,
  .mdc-contact-info-card {
    padding: 24px 18px;
  }

  .mdc-contact-form .mdc-button {
    width: 100%;
  }

  .mdc-contact-info-row,
  .mdc-contact-highlight {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .mdc-contact-action > span,
  .mdc-contact-info-row > span,
  .mdc-contact-highlight > span {
    width: 54px;
    height: 54px;
  }

  .mdc-contact-hours div {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .mdc-map-frame {
    height: 260px;
  }

  .mdc-map-card {
    left: 50%;
    min-width: min(260px, calc(100% - 36px));
  }

  .mdc-contact-highlight,
  .mdc-contact-highlight:nth-child(n + 3) {
    min-height: auto;
    padding: 22px 18px;
    border-top: 1px solid rgba(17, 23, 25, 0.1);
    border-left: 0;
  }

  .mdc-contact-highlight:first-child {
    border-top: 0;
  }
}

@media (max-width: 1180px) {
  .mdc-blog-hero,
  .mdc-featured-post {
    grid-template-columns: 1fr;
  }

  .mdc-blog-hero-media {
    min-height: auto;
    margin-left: 0;
  }

  .mdc-blog-hero-media img {
    aspect-ratio: 16 / 7;
  }

  .mdc-blog-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mdc-blog-categories article:nth-child(odd) {
    border-left: 0;
  }

  .mdc-blog-categories article:nth-child(n + 3) {
    border-top: 1px solid var(--mdc-line);
  }

  .mdc-featured-post-media img {
    aspect-ratio: 16 / 8;
    min-height: 0;
  }

  .mdc-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .mdc-blog-hero-copy {
    padding: 48px 18px 34px;
  }

  .mdc-blog-hero h1 {
    font-size: 2.7rem;
  }

  .mdc-blog-hero-actions,
  .mdc-blog-hero-actions .mdc-button,
  .mdc-blog-cta .mdc-button {
    width: 100%;
  }

  .mdc-blog-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .mdc-blog-categories,
  .mdc-blog-content,
  .mdc-blog-cta {
    width: calc(100% - 36px);
  }

  .mdc-blog-categories,
  .mdc-blog-grid,
  .mdc-blog-cta {
    grid-template-columns: 1fr;
  }

  .mdc-blog-categories {
    margin-top: -26px;
  }

  .mdc-blog-categories article,
  .mdc-blog-categories article:nth-child(n + 3) {
    min-height: auto;
    padding: 20px 18px;
    border-top: 1px solid var(--mdc-line);
    border-left: 0;
  }

  .mdc-blog-categories article:first-child {
    border-top: 0;
  }

  .mdc-featured-post {
    margin-top: 28px;
  }

  .mdc-featured-post-media img {
    aspect-ratio: 4 / 3;
  }

  .mdc-featured-post-copy,
  .mdc-blog-card-copy,
  .mdc-blog-cta {
    padding: 22px 18px;
  }

  .mdc-blog-card-media {
    height: auto;
  }

  .mdc-blog-card-media img {
    aspect-ratio: 4 / 3;
  }

  .mdc-blog-card h2,
  .mdc-blog-card-copy > p:not(.mdc-post-meta) {
    min-height: 0;
  }
}
