/* === CARDS: option cards, disease cards, reviews, blogs === */

.mh-help__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mh-option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mh-option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mh-option-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.mh-option-card__title {
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.mh-option-card__sub {
  color: var(--gray-600);
  font-weight: 500;
}

.mh-forum__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
}

.mh-checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.mh-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--gray-800);
}

.mh-checklist i {
  color: var(--success);
  margin-top: 2px;
}

.mh-forum__img {
  height: 320px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(0, 80, 122, 0.18),
    rgba(114, 203, 214, 0.22)
  );
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.mh-chip-row {
  display: flex;
  gap: 12px;
  overflow: auto;
  padding: 6px 2px;
}

.mh-diseases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mh-feature-panels {
  margin-top: 14px;
}

.mh-feature-panel {
  display: none;
}

.mh-feature-panel.is-active {
  display: block;
}

.mh-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mh-service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 14px 14px 0;
  display: grid;
  grid-template-columns: 52px 1fr 22px;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mh-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mh-service-card__img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  flex: 0 0 auto;
}

.mh-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mh-service-card__title {
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.2;
}

.mh-service-card__meta {
  margin-top: 4px;
  color: var(--gray-600);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.mh-service-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-800);
  font-weight: 900;
}

.mh-service-card__rating i {
  color: var(--warning);
}

.mh-service-card__sep {
  color: var(--gray-300);
  font-weight: 900;
}

.mh-service-card__arrow {
  color: var(--gray-400);
}

.mh-empty {
  grid-column: 1 / -1;
  padding: 14px;
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  color: var(--gray-600);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.6);
}

.mh-center {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.mh-job-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mh-job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
}

.mh-job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mh-job-card__top {
  position: relative;
}

.mh-job-card__img {
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(0, 80, 122, 0.12),
    rgba(114, 203, 214, 0.18)
  );
}

.mh-job-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mh-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  font-weight: 900;
  font-size: 0.8rem;
  border: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.9);
  color: var(--gray-900);
}

.mh-tag--featured {
  border-color: rgba(0, 80, 122, 0.25);
  color: var(--primary);
}

.mh-job-card__body {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.mh-job-card__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mh-job-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  font-weight: 800;
  font-size: 0.85rem;
}

.mh-job-badge i {
  color: var(--primary);
}

.mh-job-badge--type i {
  color: var(--gray-700);
}

.mh-job-card__title {
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.25;
}

.mh-job-card__desc {
  color: var(--gray-600);
  font-weight: 600;
  line-height: 1.5;
}

.mh-job-card__salary {
  display: flex;
  gap: 6px;
  align-items: baseline;
  font-weight: 900;
  color: var(--gray-900);
}

.mh-job-card__currency {
  color: var(--primary);
}

.mh-job-card__amount {
  color: var(--gray-900);
}

.mh-job-card__company {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid var(--gray-100);
}

.mh-job-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  flex: 0 0 auto;
  background: var(--white);
}

.mh-job-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mh-job-card__company-name {
  font-weight: 900;
  color: var(--gray-800);
}

.mh-user-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mh-user-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  gap: 12px;
  position: relative;
}

.mh-user-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mh-user-card__head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
}

.mh-user-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.mh-user-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mh-user-card__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mh-user-card__name {
  font-weight: 950;
  color: var(--gray-900);
  line-height: 1.1;
}

.mh-user-card__badge {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: #b45309;
  flex: 0 0 auto;
}

.mh-user-card__line {
  margin-top: 6px;
  color: var(--gray-700);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.mh-user-card__label {
  color: var(--gray-600);
  font-weight: 800;
}

.mh-user-card__value {
  color: var(--gray-900);
  font-weight: 900;
}

.mh-user-card__location {
  margin-top: 8px;
  gap: 8px;
  color: var(--gray-700);
}

.mh-user-card__location i {
  color: var(--primary);
}

.mh-user-card__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mh-pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  font-weight: 900;
  font-size: 0.85rem;
}

.mh-pill-tag.is-primary {
  background: rgba(0, 80, 122, 0.08);
  border-color: rgba(0, 80, 122, 0.22);
  color: var(--primary);
}

.mh-pill-tag.is-secondary {
  background: rgba(114, 203, 214, 0.14);
  border-color: rgba(114, 203, 214, 0.35);
  color: #055f67;
}

.mh-user-card__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: var(--gray-400);
}

.mh-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mh-video-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mh-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mh-video-card__media .video-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(0, 80, 122, 0.12),
    rgba(114, 203, 214, 0.18)
  );
}

.mh-video-card__media .video-thumbnail,
.mh-video-card__media .video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mh-video-card__media .video-player {
  display: block;
}

.mh-video-card__media .play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.mh-video-card__media .play-btn:hover {
  transform: scale(1.06);
  background: rgba(0, 80, 122, 0.7);
}

.mh-video-card__body {
  padding: 14px;
}

.mh-video-card__title {
  font-weight: 950;
  color: var(--gray-900);
  line-height: 1.25;
}

.mh-video-card__sub {
  margin-top: 6px;
  color: var(--gray-600);
  font-weight: 700;
  font-size: 0.9rem;
}

.mh-video-card__footer {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mh-video-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mh-icon-btn {
  position: relative;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--gray-700);
  font-size: 22px;
}

.mh-icon-btn:hover {
  color: var(--primary);
}

/* Like button: hover = red preview, liked = always red, unliked = grey */
.video-like-btn:hover {
  color: #e11d48;
}

.redcolor {
  color: #e11d48 !important;
}

.mh-icon-btn .video-like-count {
  position: absolute;
  top: -10px;
  left: 18px;
  background: #ff4d4d;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 1px 6px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
  line-height: 1.6;
}

.mh-video-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  flex: 0 0 auto;
  background: var(--white);
}

.mh-video-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Share modal ──────────────────────────────────── */
.mh-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-family: 'Outfit', system-ui, sans-serif;
}

.mh-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mh-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 58, 92, 0.22);
  overflow: hidden;
  animation: mhPop 180ms ease;
}

@keyframes mhPop {
  from { transform: translateY(12px); opacity: 0.5; }
  to   { transform: translateY(0);    opacity: 1; }
}

.mh-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #00507a 0%, #003a5c 100%);
}

.mh-modal__title {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mh-modal__close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.mh-modal__close:hover { background: rgba(255,255,255,0.22); transform: scale(1.05); }

.mh-modal__body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.mh-modal__hint {
  margin: 0 0 1rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.mh-modal__copy-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.mh-modal__copy-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.mh-modal__copy-input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #1e293b;
  font-size: 0.85rem;
  font-family: 'Outfit', system-ui, sans-serif;
  outline: none;
}
.mh-modal__copy-input:focus {
  border-color: #00507a;
  box-shadow: 0 0 0 4px rgba(0, 80, 122, 0.12);
}

.mh-modal__copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #00507a 0%, #003a5c 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Outfit', system-ui, sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.2s;
}
.mh-modal__copy-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,80,122,0.3); }
.mh-modal__copy-btn.is-copied { background: linear-gradient(135deg, #059669 0%, #047857 100%); }

/* Share network grid */
.mh-share-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.mh-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.35rem;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.mh-share:hover { background: #e6f4f9; transform: translateY(-2px); }

.mh-share__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 58, 92, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mh-share__icon i { font-size: 1.35rem; color: var(--nc, #00507a); }
.mh-share:hover .mh-share__icon { border-color: #00507a; box-shadow: 0 6px 16px rgba(0,80,122,0.15); }

.mh-share__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
}

.mh-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  max-width: 420px;
  background: var(--gray-50);
  z-index: 10001;
  overflow: hidden;
  transition: width 0.28s ease;
  box-shadow: -6px 0 32px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
}

.mh-sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.35);
}

.mh-sidebar__head {
  padding: 16px 18px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
}

.mh-sidebar__title {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mh-sidebar__close {
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 27px;
  cursor: pointer;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.mh-sidebar__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.mh-comment-list {
  list-style: none;
  margin: 0;
  padding: 16px 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
  margin-left: 10px;
}

.mh-comment-empty {
  text-align: center;
  color: var(--gray-400);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 40px 20px;
}

.mh-comment {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mh-comment__avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.mh-comment__body {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 10px 13px;
  min-width: 0;
}

.mh-comment__name {
  font-weight: 800;
  color: var(--gray-900);
  font-size: 0.88rem;
  margin-bottom: 3px;
}

.mh-comment__text {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.5;
  word-break: break-word;
}

/* ---- Comment actions (like + reply) ---- */
.mh-comment__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.mh-comment__like-btn,
.mh-comment__reply-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  padding: 0;
  transition: color 0.15s;
  line-height: 1;
}

.mh-comment__like-btn i {
  font-size: 13px;
}

.mh-comment__like-btn:hover {
  color: #e11d48;
}

.mh-comment__like-btn.is-liked {
  color: #e11d48;
}

.mh-comment__reply-btn:hover {
  color: var(--primary);
}

.mh-reply-count {
  font-weight: 700;
  color: var(--gray-400);
}

/* ---- Reply panel ---- */
.mh-reply-panel {
  display: none;
  margin-top: 10px;
}

.mh-reply-panel.is-open {
  display: block;
}

.mh-reply-input-row {
  display: flex;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  background: var(--gray-50);
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color 0.15s;
}

.mh-reply-input-row:focus-within {
  border-color: var(--primary);
}

.mh-reply-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  outline: none;
  color: var(--gray-900);
  min-width: 0;
}

.mh-reply-input::placeholder {
  color: var(--gray-400);
}

.mh-reply-submit {
  width: 34px;
  border: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.mh-reply-submit:hover {
  background: var(--primary-dark);
}

.mh-reply-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ---- Replies list ---- */
.mh-reply-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mh-reply {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.mh-reply__avatar {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.mh-reply__body {
  flex: 1;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 4px var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 7px 11px;
  min-width: 0;
}

.mh-reply__name {
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.mh-reply__text {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.45;
  word-break: break-word;
}

.mh-sidebar__foot {
  padding: 14px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.mh-comment-form {
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 4px 4px 4px 16px;
  transition: border-color 0.15s;
}

.mh-comment-form:focus-within {
  border-color: var(--primary);
}

.mh-comment-form input[type="text"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 0;
  outline: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-900);
  min-width: 0;
}

.mh-comment-form input[type="text"]::placeholder {
  color: var(--gray-400);
}

.mh-comment-form button {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.15s;
}

.mh-comment-form button:hover {
  background: var(--primary-dark);
}

.mh-auth-hint {
  text-align: center;
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 0;
}

.mh-auth-hint a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.mh-auth-hint a:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .mh-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mh-job-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mh-user-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mh-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .mh-service-grid {
    grid-template-columns: 1fr;
  }

  .mh-job-grid {
    grid-template-columns: 1fr;
  }

  .mh-user-grid {
    grid-template-columns: 1fr;
  }

  .mh-video-grid {
    grid-template-columns: 1fr;
  }

  .mh-share-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mh-modal__copy-row {
    flex-direction: column;
  }
  .mh-modal__copy-btn {
    width: 100%;
    justify-content: center;
  }
}

.mh-disease-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: grid;
  grid-template-columns: 42px 1fr 22px;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mh-disease-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mh-disease-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
}

.mh-disease-card__name {
  font-weight: 800;
  color: var(--gray-900);
}

.mh-disease-card__arrow {
  color: var(--gray-400);
}

.mh-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mh-review {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.mh-review__head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.mh-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  flex: 0 0 auto;
}

.mh-review__name {
  font-weight: 800;
  color: var(--gray-900);
}

.mh-stars {
  color: var(--warning);
  font-size: 0.85rem;
}

.mh-review__text {
  margin: 12px 0 0;
  color: var(--gray-600);
  font-weight: 500;
}

.mh-tabs {
  display: flex;
  gap: 10px;
  margin: 12px 0 18px;
  flex-wrap: wrap;
}

.mh-tabs__tab {
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-weight: 800;
  color: var(--gray-800);
}

.mh-tabs__tab.is-active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.mh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mh-blog {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mh-blog:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mh-blog__img {
  height: 170px;
  background: linear-gradient(
    135deg,
    rgba(0, 80, 122, 0.15),
    rgba(114, 203, 214, 0.25)
  );
}

.mh-blog__body {
  padding: 14px;
}

.mh-blog__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.mh-blog__cat {
  color: var(--primary);
}

.mh-blog__title {
  margin-top: 10px;
  font-weight: 800;
  color: var(--gray-900);
}

.mh-blog__more {
  margin-top: 12px;
  font-weight: 800;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
