:root {
  --mhc-bg: #fbfaf7;
  --mhc-surface: #ffffff;
  --mhc-tint: #f2f7f4;
  --mhc-green: #2f9b8f;
  --mhc-green-dark: #18786e;
  --mhc-mint: #e6f4ef;
  --mhc-blue: #eaf3fb;
  --mhc-rose: #fff1ef;
  --mhc-text: #1f2a37;
  --mhc-muted: #687385;
  --mhc-line: #e6e1d9;
  --mhc-radius: 8px;
  --mhc-shadow: 0 18px 50px rgba(31, 42, 55, .08);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--mhc-bg);
  color: var(--mhc-text);
  font-family: Tajawal, Arial, sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
  padding-top: 76px;
}

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

img {
  max-width: 100%;
}

.mhc-container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.mhc-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(230, 225, 217, .8);
  background: rgba(251, 250, 247, .92);
  backdrop-filter: blur(16px);
}

.mhc-nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.mhc-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.mhc-brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--mhc-radius);
  background: var(--mhc-mint);
  color: var(--mhc-green-dark);
  font-size: 22px;
}

.mhc-brand small {
  display: block;
  color: var(--mhc-muted);
  font-size: 13px;
  font-weight: 500;
}

.mhc-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: #334155;
  font-weight: 600;
}

.mhc-menu a {
  padding: 8px 4px;
  position: relative;
  transition: color .2s ease;
}

.mhc-menu a.is-active {
  color: var(--mhc-green-dark);
}

.mhc-menu a.is-active::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 0;
  left: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--mhc-green);
}

.mhc-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: #fff;
  color: var(--mhc-green-dark);
  cursor: pointer;
  font: inherit;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.mhc-btn,
.mhc-btn-outline {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--mhc-radius);
  padding: 10px 20px;
  font-weight: 700;
}

.mhc-btn {
  border: 1px solid var(--mhc-green);
  background: var(--mhc-green);
  color: #fff;
}

.mhc-btn-outline {
  border: 1px solid var(--mhc-green);
  color: var(--mhc-green-dark);
}

.mhc-hero {
  padding: 74px 0 54px;
}

.mhc-hero-grid,
.mhc-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 40px;
  align-items: center;
}

.mhc-kicker {
  margin: 0 0 12px;
  color: var(--mhc-green-dark);
  font-weight: 700;
}

.mhc-hero h1,
.mhc-page-title h1 {
  margin: 0;
  line-height: 1.22;
}

.mhc-hero h1 {
  font-size: clamp(30px, 4.2vw, 48px);
}

.mhc-page-title h1 {
  font-size: clamp(28px, 3.6vw, 42px);
}

.mhc-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--mhc-muted);
  font-size: 18px;
}

.mhc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mhc-visual {
  min-height: 370px;
  border: 1px solid var(--mhc-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(47, 155, 143, .22), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(247, 182, 160, .24), transparent 30%),
    linear-gradient(135deg, #fff, #eff8f4);
  box-shadow: var(--mhc-shadow);
  position: relative;
  overflow: hidden;
}

.mhc-visual::after {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(47, 155, 143, .25);
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(47, 155, 143, .12) 48% 52%, transparent 52%),
    linear-gradient(#fff8, #fff3);
}

.mhc-home-hero-visual {
  min-height: 0;
  background: #eef6f2;
}

.mhc-home-hero-visual::after {
  display: none;
}

.mhc-home-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
}

.mhc-section {
  padding: 70px 0;
}

.mhc-section-tint {
  background: var(--mhc-tint);
}

.mhc-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.mhc-section-head h2,
.mhc-card h3,
.mhc-detail h2 {
  margin: 0;
}

.mhc-section-head p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--mhc-muted);
}

.mhc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mhc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mhc-card,
.mhc-form,
.mhc-detail,
.mhc-stat {
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: var(--mhc-surface);
  box-shadow: 0 8px 28px rgba(31, 42, 55, .05);
}

.mhc-card {
  padding: 22px;
  min-width: 0;
}

.mhc-card p,
.mhc-detail p {
  color: var(--mhc-muted);
  overflow-wrap: anywhere;
}

.mhc-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: var(--mhc-radius);
  background: var(--mhc-mint);
  color: var(--mhc-green-dark);
  font-size: 22px;
  margin-bottom: 18px;
}

.mhc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mhc-chip {
  border-radius: 999px;
  background: var(--mhc-blue);
  color: #27617f;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
}

.mhc-page-title {
  padding: 52px 0 36px;
  background:
    linear-gradient(180deg, rgba(242, 247, 244, .96), rgba(230, 244, 239, .7)),
    var(--mhc-tint);
  border-bottom: 1px solid rgba(230, 225, 217, .8);
}

.mhc-page-breadcrumbs {
  margin-bottom: 18px;
}

.mhc-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  color: var(--mhc-muted);
  font-size: 14px;
}

.mhc-breadcrumbs a,
.mhc-breadcrumbs .current {
  display: inline-flex;
  align-items: center;
}

.mhc-breadcrumbs a {
  color: var(--mhc-muted);
  transition: color .2s ease;
}

.mhc-breadcrumbs a::after {
  content: "/";
  color: #9aa4b2;
  margin-inline: 10px 0;
}

.mhc-breadcrumbs a:hover,
.mhc-breadcrumbs .current {
  color: var(--mhc-green-dark);
}

.mhc-form {
  padding: 24px;
}

.mhc-detail {
  padding: 28px;
}

.mhc-detail > :first-child {
  margin-top: 0;
}

.mhc-detail > :last-child {
  margin-bottom: 0;
}

.mhc-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.mhc-field label {
  font-weight: 700;
}

.mhc-field input,
.mhc-field select,
.mhc-field textarea {
  width: 100%;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: #fff;
  color: var(--mhc-text);
  font: inherit;
  padding: 11px 12px;
}

.mhc-field textarea {
  min-height: 120px;
  resize: vertical;
}

.mhc-alert {
  border-radius: var(--mhc-radius);
  margin-bottom: 18px;
  padding: 12px 14px;
  background: var(--mhc-mint);
  color: var(--mhc-green-dark);
  font-weight: 700;
}

.mhc-error {
  color: #b42318;
  font-size: 13px;
}

.mhc-footer {
  position: relative;
  margin-top: 70px;
  padding: 54px 0 24px;
  background: #18342e;
  color: #e8f5f1;
}

.mhc-footer .mhc-container {
  width: min(1320px, calc(100% - 64px));
}

.mhc-footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.55fr) minmax(150px, .75fr) minmax(180px, .9fr) minmax(180px, .9fr) minmax(230px, 1fr);
  gap: 56px;
  align-items: start;
}

.mhc-footer-col {
  min-width: 0;
  text-align: start;
}

.mhc-footer-col a,
.mhc-footer-col p {
  overflow-wrap: anywhere;
}

.mhc-footer h2,
.mhc-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
}

.mhc-footer h3 {
  font-size: 18px;
}

.mhc-footer p,
.mhc-footer a {
  color: #c7e4dd;
}

.mhc-footer a {
  display: table;
  width: fit-content;
  margin: 0 0 10px;
  line-height: 1.65;
  transition: color .2s ease, transform .2s ease, background .2s ease;
}

.mhc-footer a:hover {
  color: #fff;
  transform: translateX(-2px);
}

.mhc-footer-brand p {
  max-width: 480px;
  margin: 0;
}

.mhc-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mhc-social a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.mhc-social a:hover {
  background: var(--mhc-green);
  transform: translateY(-2px);
}

.mhc-footer-contact p,
.mhc-footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.mhc-footer-contact span {
  min-width: 0;
}

.mhc-footer-contact i {
  width: 17px;
  min-width: 17px;
  margin-top: 6px;
  color: #8cd4c8;
  text-align: center;
}

.mhc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 22px;
}

.mhc-footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mhc-footer-bottom a,
.mhc-footer-bottom p {
  margin: 0;
}

.mhc-footer-bottom a {
  display: inline-flex;
}

.mhc-floating {
  position: fixed;
  right: 26px;
  z-index: 30;
  display: grid !important;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--mhc-green);
  color: #fff;
  box-shadow: var(--mhc-shadow);
  font-weight: 700;
  margin: 0;
  font-size: 20px;
  line-height: 1;
  transform: none;
}

.mhc-floating:hover {
  color: #fff;
  transform: translateY(-2px);
}

.mhc-floating i {
  line-height: 1;
}

.mhc-floating-whatsapp {
  bottom: 82px;
}

.mhc-floating-top {
  bottom: 24px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.mhc-footer .mhc-floating {
  display: grid !important;
  width: 52px;
  height: 52px;
  margin: 0;
  line-height: 1;
}

.mhc-footer .mhc-floating:hover {
  transform: translateY(-2px);
}

.mhc-floating i {
  line-height: 1;
}

.mhc-empty {
  border: 1px dashed var(--mhc-line);
  border-radius: var(--mhc-radius);
  padding: 28px;
  color: var(--mhc-muted);
  text-align: center;
}

.mhc-faq-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.mhc-faq-card {
  overflow: hidden;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: var(--mhc-surface);
  box-shadow: 0 12px 34px rgba(31, 42, 55, .08);
}

.mhc-faq-card img,
.mhc-faq-card-fallback {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mhc-faq-card-fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(47, 155, 143, .18), rgba(247, 182, 160, .18)),
    #edf7f3;
  color: var(--mhc-green-dark);
  font-size: 58px;
}

.mhc-faq-card-body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.mhc-faq-card-body strong {
  color: var(--mhc-green-dark);
  font-size: 20px;
  line-height: 1.45;
}

.mhc-faq-card-body span {
  color: var(--mhc-muted);
}

.mhc-faq-card-body em {
  display: inline-flex;
  width: fit-content;
  justify-self: end;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mhc-green);
  border-radius: var(--mhc-radius);
  color: var(--mhc-green-dark);
  font-style: normal;
  font-weight: 700;
  padding: 8px 14px;
}

.mhc-faq-card:hover .mhc-faq-card-body em {
  background: var(--mhc-green);
  color: #fff;
}

.mhc-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(240px, 3fr);
  gap: 28px;
  align-items: start;
}

.mhc-faq-main {
  display: grid;
  gap: 14px;
}

.mhc-accordion {
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: #fff;
  box-shadow: 0 8px 26px rgba(31, 42, 55, .05);
  overflow: hidden;
}

.mhc-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--mhc-text);
  font-weight: 700;
  list-style: none;
  padding: 18px 20px;
}

.mhc-accordion summary::-webkit-details-marker {
  display: none;
}

.mhc-accordion summary i {
  color: var(--mhc-green-dark);
  transition: transform .2s ease;
}

.mhc-accordion[open] summary {
  border-bottom: 1px solid var(--mhc-line);
  color: var(--mhc-green-dark);
}

.mhc-accordion[open] summary i {
  transform: rotate(180deg);
}

.mhc-accordion-content {
  color: var(--mhc-muted);
  padding: 18px 20px 20px;
}

.mhc-accordion-content > :first-child {
  margin-top: 0;
}

.mhc-accordion-content > :last-child {
  margin-bottom: 0;
}

.mhc-faq-sidebar {
  position: sticky;
  top: 96px;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 26px rgba(31, 42, 55, .05);
}

.mhc-faq-sidebar h3 {
  margin: 0 0 16px;
}

.mhc-faq-sidebar a {
  display: block;
  border-radius: var(--mhc-radius);
  color: var(--mhc-muted);
  font-weight: 700;
  padding: 10px 12px;
}

.mhc-faq-sidebar a.active,
.mhc-faq-sidebar a:hover {
  background: var(--mhc-mint);
  color: var(--mhc-green-dark);
}

.mhc-article-card {
  overflow: hidden;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: var(--mhc-surface);
  box-shadow: 0 12px 34px rgba(31, 42, 55, .08);
}

.mhc-doctor-card {
  overflow: hidden;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: var(--mhc-surface);
  box-shadow: 0 12px 34px rgba(31, 42, 55, .08);
}

.mhc-doctor-card-media,
.mhc-doctor-card-media img,
.mhc-doctor-card-fallback {
  display: block;
  width: 100%;
}

.mhc-doctor-card-media img,
.mhc-doctor-card-fallback {
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
}

.mhc-doctor-card-fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(47, 155, 143, .18), rgba(24, 120, 110, .08)),
    #edf7f3;
  color: var(--mhc-green-dark);
  font-size: 48px;
  font-weight: 700;
}

.mhc-doctor-card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.mhc-doctor-card-head {
  display: grid;
  gap: 6px;
}

.mhc-doctor-card-head h3 {
  margin: 0;
  line-height: 1.4;
}

.mhc-doctor-card-head span {
  color: var(--mhc-green-dark);
  font-weight: 700;
}

.mhc-doctor-card-body p {
  margin: 0;
  color: var(--mhc-muted);
}

.mhc-doctor-profile {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 3.3fr);
  gap: 28px;
  align-items: start;
}

.mhc-doctor-profile-main,
.mhc-doctor-profile-side {
  min-width: 0;
}

.mhc-doctor-profile-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.mhc-doctor-side-card {
  padding: 18px;
}

.mhc-doctor-portrait {
  overflow: hidden;
  border-radius: var(--mhc-radius);
  background: var(--mhc-tint);
}

.mhc-doctor-portrait img,
.mhc-doctor-portrait-fallback {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5.1;
  object-fit: cover;
}

.mhc-doctor-portrait-fallback {
  display: grid;
  place-items: end center;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 33%, rgba(47, 155, 143, .26) 0 18%, transparent 18.5%),
    radial-gradient(circle at 50% 110%, rgba(47, 155, 143, .24) 0 31%, transparent 31.5%),
    #edf7f3;
  color: rgba(24, 120, 110, .75);
  font-weight: 700;
}

.mhc-doctor-side-meta {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.mhc-doctor-side-meta div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--mhc-muted);
}

.mhc-doctor-side-meta i {
  color: var(--mhc-green-dark);
  margin-top: 4px;
}

.mhc-doctor-book-btn {
  width: 100%;
  margin-top: 18px;
}

.mhc-doctor-section + .mhc-doctor-section {
  margin-top: 30px;
}

.mhc-doctor-section h2 {
  margin: 0 0 14px;
}

.mhc-doctor-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mhc-doctor-list li {
  position: relative;
  color: var(--mhc-muted);
  padding-inline-start: 22px;
}

.mhc-doctor-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset-inline-start: 0;
  top: 1px;
  color: var(--mhc-green-dark);
  font-size: 13px;
}

.mhc-doctor-list-bullets li::before {
  content: "\2022";
  font-family: inherit;
  font-size: 20px;
  line-height: 1;
  top: -1px;
}

.mhc-doctor-note {
  border: 1px solid #ead9b8;
  border-radius: var(--mhc-radius);
  background: #f8f1df;
  color: #8a6d3b;
  margin-top: 32px;
  padding: 14px 18px;
  text-align: center;
}

.mhc-specialty-card {
  overflow: hidden;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: var(--mhc-surface);
  box-shadow: 0 12px 34px rgba(31, 42, 55, .08);
}

.mhc-specialty-card-media,
.mhc-specialty-card-media img,
.mhc-specialty-card-fallback {
  display: block;
  width: 100%;
}

.mhc-specialty-card-media img,
.mhc-specialty-card-fallback {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mhc-specialty-card-fallback,
.mhc-specialty-hero-fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(47, 155, 143, .15), rgba(24, 120, 110, .08)),
    #edf7f3;
  color: var(--mhc-green-dark);
  font-size: 40px;
  font-weight: 700;
}

.mhc-specialty-card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.mhc-specialty-card-body h3,
.mhc-specialty-section h2,
.mhc-specialty-side-card h3 {
  margin: 0;
}

.mhc-specialty-card-body p,
.mhc-specialty-side-card p,
.mhc-specialty-doctor-item span {
  margin: 0;
  color: var(--mhc-muted);
}

.mhc-specialty-layout {
  display: grid;
  grid-template-columns: minmax(280px, 3.3fr) minmax(0, 6.7fr);
  gap: 28px;
  align-items: start;
}

.mhc-specialty-main,
.mhc-specialty-side {
  min-width: 0;
}

.mhc-specialty-main {
  order: 1;
}

.mhc-specialty-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
  order: 0;
}

.mhc-specialty-side-card {
  padding: 20px;
}

.mhc-specialty-book-btn,
.mhc-specialty-secondary-btn {
  width: 100%;
}

.mhc-specialty-secondary-btn {
  margin-top: 12px;
}

.mhc-specialty-hero {
  overflow: hidden;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(31, 42, 55, .08);
  margin-bottom: 20px;
}

.mhc-specialty-hero img,
.mhc-specialty-hero-fallback {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mhc-specialty-content {
  display: grid;
  gap: 24px;
}

.mhc-specialty-section {
  display: grid;
  gap: 14px;
}

.mhc-specialty-note {
  border: 1px solid #bfebf6;
  border-radius: var(--mhc-radius);
  background: #dff6ff;
  color: #27546b;
  padding: 16px 18px;
  text-align: center;
}

.mhc-specialty-doctors {
  display: grid;
  gap: 14px;
}

.mhc-specialty-doctor-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mhc-specialty-doctor-item strong {
  display: block;
  line-height: 1.7;
}

.mhc-specialty-doctor-item em {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2f7a57;
  color: #fff;
  font-style: normal;
  font-weight: 700;
}

.mhc-specialty-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--mhc-green-dark);
  font-weight: 700;
}

.mhc-specialty-related-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mhc-specialty-related-list li {
  position: relative;
  color: var(--mhc-muted);
  padding-inline-start: 16px;
}

.mhc-specialty-related-list li::before {
  content: "\2022";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: var(--mhc-green-dark);
}

.mhc-course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mhc-course-card {
  overflow: hidden;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: var(--mhc-surface);
  box-shadow: 0 12px 34px rgba(31, 42, 55, .08);
}

.mhc-course-card-media,
.mhc-course-card-media img {
  display: block;
  width: 100%;
}

.mhc-course-card-media {
  position: relative;
  overflow: hidden;
  background: #eef6f3;
}

.mhc-course-card-media img,
.mhc-course-card-fallback {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mhc-course-card-fallback,
.mhc-course-hero-fallback {
  display: grid;
  place-items: end center;
  background:
    linear-gradient(135deg, rgba(47, 155, 143, .18), rgba(24, 120, 110, .08)),
    #edf7f3;
  color: rgba(24, 120, 110, .86);
  font-weight: 700;
}

.mhc-course-card-fallback {
  padding: 24px;
}

.mhc-course-card-overlay,
.mhc-course-hero-badges {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mhc-course-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(24, 120, 110, .92);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
}

.mhc-course-badge-light {
  background: rgba(255, 255, 255, .92);
  color: var(--mhc-green-dark);
}

.mhc-course-card-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.mhc-course-card-head {
  display: grid;
  gap: 12px;
}

.mhc-course-card-head h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.5;
}

.mhc-course-card-head h3 a:hover {
  color: var(--mhc-green-dark);
}

.mhc-course-card-meta,
.mhc-course-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.mhc-course-card-meta span,
.mhc-course-feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mhc-muted);
  font-size: 14px;
  font-weight: 600;
}

.mhc-course-card-meta i,
.mhc-course-feature-list i,
.mhc-course-info-list span,
.mhc-course-info-list strong,
.mhc-course-content-head i {
  color: var(--mhc-green-dark);
}

.mhc-course-card-body p {
  margin: 0;
  color: var(--mhc-muted);
  line-height: 1.9;
}

.mhc-course-layout {
  display: grid;
  grid-template-columns: minmax(0, 7.7fr) minmax(280px, 4.3fr);
  gap: 28px;
  align-items: start;
}

.mhc-course-main,
.mhc-course-sidebar {
  min-width: 0;
}

.mhc-course-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.mhc-course-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(31, 42, 55, .08);
  margin-bottom: 20px;
}

.mhc-course-hero img,
.mhc-course-hero-fallback {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mhc-course-hero-fallback {
  min-height: 360px;
  padding: 32px;
}

.mhc-course-content {
  display: grid;
  gap: 22px;
}

.mhc-course-content-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--mhc-line);
}

.mhc-course-info-card h3 {
  margin: 0 0 18px;
  color: var(--mhc-green-dark);
}

.mhc-course-info-list {
  display: grid;
  gap: 14px;
}

.mhc-course-info-list div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--mhc-line);
  padding-bottom: 14px;
}

.mhc-course-info-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mhc-course-info-list span {
  font-size: 14px;
  font-weight: 600;
}

.mhc-course-info-list strong {
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

.mhc-course-book-btn {
  width: 100%;
  margin-top: 22px;
}

.mhc-course-side-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mhc-course-side-tags .mhc-chip {
  transition: background .2s ease, color .2s ease;
}

.mhc-course-side-tags a.mhc-chip:hover {
  background: var(--mhc-green);
  color: #fff;
}

.mhc-home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mhc-home-why-card {
  overflow: hidden;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: var(--mhc-surface);
  box-shadow: 0 12px 34px rgba(31, 42, 55, .08);
}

.mhc-home-why-card-media,
.mhc-home-why-card-media img {
  display: block;
  width: 100%;
}

.mhc-home-why-card-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mhc-home-why-card-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.mhc-home-why-card-body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
}

.mhc-home-why-card-body p {
  margin: 0;
  color: var(--mhc-muted);
}

.mhc-home-course-grid,
.mhc-home-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mhc-home-article-card {
  overflow: hidden;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: var(--mhc-surface);
  box-shadow: 0 12px 34px rgba(31, 42, 55, .08);
}

.mhc-home-article-card-media,
.mhc-home-article-card-media img {
  display: block;
  width: 100%;
}

.mhc-home-article-card-media img,
.mhc-home-article-card-media-fallback {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mhc-home-article-card-media-fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(47, 155, 143, .16), rgba(24, 120, 110, .08)),
    #edf7f3;
  color: var(--mhc-green-dark);
  font-size: 48px;
}

.mhc-home-article-card-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.mhc-home-article-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.mhc-home-article-card-body h3 {
  margin: 0;
  line-height: 1.45;
}

.mhc-home-article-card-body p {
  margin: 0;
  color: var(--mhc-muted);
  line-height: 1.9;
}

.mhc-home-article-card-date {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--mhc-green-dark);
  font-size: 14px;
  font-weight: 700;
}

.mhc-home-article-card-author {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--mhc-muted);
  font-size: 14px;
  font-weight: 600;
}

.mhc-home-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mhc-home-step-card {
  position: relative;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: var(--mhc-surface);
  box-shadow: 0 8px 28px rgba(31, 42, 55, .05);
  padding: 22px;
}

.mhc-home-step-card h3 {
  margin: 0 0 10px;
}

.mhc-home-step-card p {
  margin: 0;
  color: var(--mhc-muted);
}

.mhc-home-step-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #edf8f4, #dff2ec);
  color: var(--mhc-green-dark);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(47, 155, 143, .12);
}

.mhc-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.mhc-about-copy,
.mhc-about-value-card,
.mhc-about-step-card,
.mhc-about-cta {
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: var(--mhc-surface);
  box-shadow: 0 12px 34px rgba(31, 42, 55, .06);
}

.mhc-about-copy,
.mhc-about-hero-media {
  padding: 28px;
}

.mhc-about-hero-media {
  overflow: hidden;
  display: block;
  padding: 0;
}

.mhc-about-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.mhc-about-copy h2,
.mhc-about-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.35;
}

.mhc-about-copy p,
.mhc-about-value-card p,
.mhc-about-step-card p,
.mhc-about-cta p {
  margin: 0;
  color: var(--mhc-muted);
}

.mhc-about-copy p + p {
  margin-top: 14px;
}

.mhc-about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.mhc-about-point {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(47, 155, 143, .16);
  border-radius: var(--mhc-radius);
  background: var(--mhc-tint);
  padding: 12px 14px;
}

.mhc-about-point i,
.mhc-about-value-icon,
.mhc-about-step-number {
  color: var(--mhc-green-dark);
}

.mhc-about-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mhc-about-feature-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  overflow: hidden;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: var(--mhc-surface);
  box-shadow: 0 12px 34px rgba(31, 42, 55, .08);
}

.mhc-about-feature-media,
.mhc-about-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.mhc-about-feature-media img {
  min-height: 220px;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.mhc-about-feature-content {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.mhc-about-feature-number {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(47, 155, 143, .16), rgba(24, 120, 110, .08));
  color: var(--mhc-green-dark);
  font-size: 20px;
  font-weight: 700;
}

.mhc-about-feature-content h3 {
  margin: 0;
  color: var(--mhc-green-dark);
  font-size: 26px;
  line-height: 1.45;
}

.mhc-about-feature-content p {
  margin: 0;
  color: var(--mhc-muted);
}

.mhc-about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mhc-about-value-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.mhc-about-value-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: var(--mhc-radius);
  background: var(--mhc-mint);
  font-size: 22px;
}

.mhc-about-value-card h3,
.mhc-about-step-card h3 {
  margin: 0;
  line-height: 1.45;
}

.mhc-about-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mhc-about-step-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.mhc-about-step-number {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mhc-mint);
  font-size: 20px;
  font-weight: 700;
}

.mhc-about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 28px;
}

.mhc-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 7.8fr) minmax(280px, 4.2fr);
  gap: 28px;
  align-items: start;
}

.mhc-contact-main,
.mhc-contact-side {
  min-width: 0;
}

.mhc-contact-main {
  display: grid;
  gap: 24px;
}

.mhc-contact-form-wrap h3,
.mhc-contact-newsletter h2,
.mhc-contact-help-card h3 {
  margin: 0 0 12px;
}

.mhc-contact-subtitle {
  margin: 0 0 20px;
  color: var(--mhc-muted);
}

.mhc-contact-form .mhc-btn {
  min-width: 180px;
}

.mhc-contact-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.mhc-contact-list,
.mhc-contact-hours {
  display: grid;
  gap: 14px;
}

.mhc-contact-list div,
.mhc-contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--mhc-muted);
}

.mhc-contact-list i,
.mhc-contact-hours strong,
.mhc-contact-help-card .mhc-kicker {
  color: var(--mhc-green-dark);
}

.mhc-contact-hours div {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--mhc-line);
  padding-bottom: 12px;
}

.mhc-contact-hours div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mhc-contact-hours span,
.mhc-contact-help-card p {
  color: var(--mhc-muted);
}

.mhc-contact-help-card .mhc-btn {
  width: 100%;
  margin-top: 16px;
}

.mhc-newsletter-section {
  padding: 56px 0;
  background:
    linear-gradient(135deg, rgba(47, 155, 143, .1), rgba(24, 120, 110, .05)),
    var(--mhc-tint);
  border-top: 1px solid rgba(47, 155, 143, .08);
}

.mhc-newsletter-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .88fr);
  gap: 24px;
  align-items: center;
  padding: 0;
}

.mhc-newsletter-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.35;
}

.mhc-newsletter-copy p {
  color: var(--mhc-muted);
}

.mhc-newsletter-copy p:last-child {
  margin: 0;
}

.mhc-newsletter-form {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(47, 155, 143, .14);
  border-radius: var(--mhc-radius);
  background: #fff;
  width: min(100%, 430px);
  justify-self: end;
  box-shadow: 0 12px 34px rgba(31, 42, 55, .06);
  padding: 20px;
}

.mhc-newsletter-form .mhc-btn {
  width: 100%;
}

.mhc-newsletter-message {
  border-radius: var(--mhc-radius);
  font-weight: 700;
  padding: 10px 12px;
}

.mhc-newsletter-message.is-success {
  background: var(--mhc-mint);
  color: var(--mhc-green-dark);
}

.mhc-newsletter-message.is-error {
  background: #fff1ef;
  color: #b42318;
}

body:has(main > .mhc-newsletter-section:last-child) .mhc-footer {
  margin-top: 0;
}

.mhc-article-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.mhc-home-articles-section .mhc-home-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mhc-article-card-media {
  display: block;
}

.mhc-article-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mhc-article-card-media-fallback {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(47, 155, 143, .16), rgba(24, 120, 110, .08)),
    #edf7f3;
  color: var(--mhc-green-dark);
  font-size: 54px;
}

.mhc-article-card-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.mhc-article-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.mhc-article-card-body h3 {
  margin: 0;
  line-height: 1.45;
}

.mhc-article-card-body p {
  margin: 0;
  color: var(--mhc-muted);
  line-height: 1.9;
}

.mhc-article-card-date {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--mhc-green-dark);
  font-size: 14px;
  font-weight: 700;
}

.mhc-article-card-author {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--mhc-muted);
  font-size: 14px;
  font-weight: 600;
}

.mhc-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(260px, 4fr);
  gap: 28px;
  align-items: start;
}

.mhc-article-main {
  min-width: 0;
}

.mhc-article-hero {
  overflow: hidden;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(31, 42, 55, .08);
  margin-bottom: 20px;
}

.mhc-article-hero img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.mhc-meta-article {
  margin: 0 0 20px;
}

.mhc-article-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.mhc-sidebar-card {
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: var(--mhc-surface);
  box-shadow: 0 8px 26px rgba(31, 42, 55, .05);
  padding: 20px;
}

.mhc-sidebar-card h3 {
  margin: 0 0 16px;
  color: var(--mhc-green-dark);
}

.mhc-sidebar-list,
.mhc-sidebar-articles {
  display: grid;
  gap: 12px;
}

.mhc-sidebar-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: transparent;
  color: var(--mhc-text);
  font-weight: 700;
  padding: 0 0 12px;
  transition: color .2s ease;
}

.mhc-sidebar-list a:hover,
.mhc-sidebar-article:hover {
  color: var(--mhc-green-dark);
}

.mhc-sidebar-list a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mhc-sidebar-article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: #fff;
  padding: 10px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.mhc-sidebar-article img {
  display: block;
  width: 86px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
}

.mhc-sidebar-article-fallback {
  display: grid;
  width: 86px;
  height: 72px;
  place-items: center;
  border-radius: 6px;
  background: var(--mhc-mint);
  color: var(--mhc-green-dark);
  font-size: 28px;
}

.mhc-sidebar-article-content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.mhc-sidebar-article small {
  color: var(--mhc-muted);
  font-size: 12px;
}

.mhc-sidebar-article strong {
  color: var(--mhc-text);
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mhc-line);
  border-radius: var(--mhc-radius);
  background: #fff;
  padding: 6px 10px;
}

.pagination .active span {
  border-color: var(--mhc-green);
  background: var(--mhc-green);
  color: #fff;
}

@media (max-width: 1200px) {
  .mhc-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
  }
}

@media (max-width: 1024px) {
  .mhc-grid,
  .mhc-faq-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mhc-specialty-layout {
    grid-template-columns: 1fr;
  }

  .mhc-course-grid {
    grid-template-columns: 1fr;
  }

  .mhc-about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mhc-about-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mhc-newsletter-shell {
    grid-template-columns: 1fr;
  }

  .mhc-newsletter-form {
    width: 100%;
    justify-self: stretch;
  }

  .mhc-hero-grid,
  .mhc-split {
    grid-template-columns: 1fr;
  }

  .mhc-visual {
    min-height: 280px;
  }

  .mhc-home-hero-visual img {
    min-height: 280px;
  }

  .mhc-nav {
    align-items: flex-start;
    gap: 16px;
  }

  .mhc-menu {
    gap: 10px 14px;
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .mhc-hero-grid,
  .mhc-split,
  .mhc-grid,
  .mhc-grid-2,
  .mhc-faq-cards,
  .mhc-faq-layout,
  .mhc-article-layout,
  .mhc-course-layout,
  .mhc-about-hero,
  .mhc-contact-grid {
    grid-template-columns: 1fr;
  }

  .mhc-article-cards-grid {
    grid-template-columns: 1fr;
  }

  .mhc-home-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mhc-home-course-grid,
  .mhc-home-article-grid,
  .mhc-home-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mhc-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .mhc-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mhc-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mhc-footer .mhc-container {
    width: min(100% - 32px, 1120px);
  }

  .mhc-faq-sidebar {
    position: static;
  }

  .mhc-article-sidebar {
    position: static;
  }

  .mhc-doctor-profile-side {
    position: static;
  }

  .mhc-specialty-side {
    position: static;
    order: 1;
  }

  .mhc-specialty-main {
    order: 0;
  }

  .mhc-course-sidebar {
    position: static;
  }

  .mhc-about-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .mhc-contact-side {
    position: static;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
  }

  .mhc-header {
    position: static;
  }

  .mhc-nav {
    min-height: auto;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 0;
  }

  .mhc-brand {
    min-width: 0;
  }

  .mhc-brand span:last-child {
    min-width: 0;
  }

  .mhc-brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mhc-nav-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .mhc-menu {
    position: static;
    flex: 0 0 100%;
    order: 3;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--mhc-radius);
    background: #fff;
    box-shadow: none;
    gap: 0;
    font-size: 14px;
    opacity: 0;
    transition: max-height .25s ease, opacity .2s ease, border-color .2s ease;
  }

  .mhc-menu a {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    border-bottom: 1px solid var(--mhc-line);
    padding: 9px 14px;
  }

  .mhc-menu a.is-active::after {
    right: 14px;
    bottom: 8px;
    left: 14px;
  }

  .mhc-menu a:last-child {
    border-bottom: 0;
  }

  .mhc-menu .mhc-btn-outline {
    justify-content: center;
    margin: 10px 12px 12px;
    border-bottom: 1px solid var(--mhc-green);
  }

  .mhc-nav-open .mhc-menu {
    max-height: 520px;
    border-color: var(--mhc-line);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .mhc-container,
  .mhc-footer .mhc-container {
    width: min(100% - 24px, 1120px);
  }

  body {
    padding-top: 0;
  }

  .mhc-header {
    position: static;
  }

  .mhc-nav {
    min-height: auto;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 0;
  }

  .mhc-brand {
    min-width: 0;
  }

  .mhc-brand span:last-child {
    min-width: 0;
  }

  .mhc-brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mhc-nav-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .mhc-menu {
    position: static;
    flex: 0 0 100%;
    order: 3;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--mhc-radius);
    background: #fff;
    box-shadow: none;
    gap: 0;
    font-size: 14px;
    opacity: 0;
    transition: max-height .25s ease, opacity .2s ease, border-color .2s ease;
  }

  .mhc-menu a {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    border-bottom: 1px solid var(--mhc-line);
    padding: 9px 14px;
  }

  .mhc-menu a:last-child {
    border-bottom: 0;
  }

  .mhc-menu .mhc-btn-outline {
    justify-content: center;
    margin: 10px 12px 12px;
    border-bottom: 1px solid var(--mhc-green);
  }

  .mhc-nav-open .mhc-menu {
    max-height: 520px;
    border-color: var(--mhc-line);
    opacity: 1;
  }

  .mhc-hero,
  .mhc-section {
    padding: 42px 0;
  }

  .mhc-page-title {
    padding: 34px 0 20px;
  }

  .mhc-hero h1,
  .mhc-page-title h1 {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .mhc-lead {
    font-size: 16px;
  }

  .mhc-breadcrumbs {
    font-size: 13px;
  }

  .mhc-grid,
  .mhc-grid-2,
  .mhc-faq-cards,
  .mhc-doctor-profile,
  .mhc-specialty-layout,
  .mhc-course-grid,
  .mhc-home-why-grid,
  .mhc-home-course-grid,
  .mhc-home-article-grid,
  .mhc-home-steps-grid,
  .mhc-about-points,
  .mhc-about-values,
  .mhc-about-steps,
  .mhc-about-feature-list {
    grid-template-columns: 1fr;
  }

  .mhc-about-feature-row {
    grid-template-columns: 1fr;
  }

  .mhc-article-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mhc-home-article-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mhc-sidebar-article {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .mhc-sidebar-article img {
    width: 72px;
    height: 64px;
  }

  .mhc-specialty-card-body,
  .mhc-specialty-side-card {
    padding: 18px;
  }

  .mhc-specialty-doctor-item {
    align-items: flex-start;
  }

  .mhc-course-card-body,
  .mhc-sidebar-card.mhc-course-info-card {
    padding: 18px;
  }

  .mhc-course-card-head h3 {
    font-size: 22px;
  }

  .mhc-course-card-meta,
  .mhc-course-feature-list {
    gap: 10px 14px;
  }

  .mhc-course-info-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .mhc-course-info-list strong {
    text-align: right;
  }

  .mhc-about-copy,
  .mhc-about-panel,
  .mhc-about-value-card,
  .mhc-about-step-card,
  .mhc-about-cta,
  .mhc-newsletter-shell {
    padding: 20px;
  }

  .mhc-about-copy h2,
  .mhc-about-cta h2 {
    font-size: clamp(24px, 6vw, 30px);
  }

  .mhc-newsletter-copy h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .mhc-newsletter-section {
    padding: 42px 0;
  }

  .mhc-card,
  .mhc-form,
  .mhc-detail {
    padding: 18px;
  }

  .mhc-faq-card-body em {
    justify-self: stretch;
  }

  .mhc-footer {
    padding-top: 38px;
  }

  .mhc-footer-grid {
    grid-template-columns: 1fr;
  }

  .mhc-floating,
  .mhc-footer .mhc-floating {
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .mhc-floating-whatsapp {
    bottom: 72px;
  }

  .mhc-floating-top {
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 90px;
  }

  body.mhc-nav-open {
    overflow: hidden;
  }

  .mhc-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
  }

  .mhc-nav {
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
  }

  .mhc-brand {
    order: 1;
    flex: 1 1 auto;
    max-width: 100%;
    justify-content: flex-start;
  }

  .mhc-brand-mark {
    flex: 0 0 auto;
  }

  .mhc-brand > span:last-child {
    min-width: 0;
    flex: 1 1 auto;
    text-align: right;
  }

  .mhc-brand span:last-child {
    min-width: 0;
    text-align: right;
  }

  .mhc-nav-toggle {
    position: relative;
    display: grid;
    order: 2;
    flex: 0 0 44px;
    z-index: 1002;
  }

  .mhc-menu {
    position: fixed;
    inset: 90px 0 0 0;
    z-index: 1001;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    width: 100vw;
    max-height: none;
    min-height: calc(100dvh - 90px);
    overflow-y: auto;
    border: 0;
    border-top: 1px solid var(--mhc-line);
    border-radius: 0;
    background: #fff;
    box-shadow: -18px 0 40px rgba(31, 42, 55, .12);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform .28s ease, opacity .2s ease, visibility .2s ease;
  }

  .mhc-menu a,
  .mhc-menu .mhc-btn-outline {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: flex-start;
    border: 0;
    border-bottom: 1px solid var(--mhc-line);
    border-radius: 0;
    margin: 0;
    padding: 14px 24px;
    color: var(--mhc-text);
    text-align: right;
  }

  .mhc-menu a:last-child {
    border-bottom: 0;
  }

  .mhc-menu .mhc-btn-outline {
    color: var(--mhc-green-dark);
    font-weight: 700;
  }

  body.mhc-nav-open .mhc-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
  }

  body.mhc-nav-open .mhc-nav-toggle {
    border-color: var(--mhc-green);
    background: var(--mhc-mint);
  }
}
