/* Tema: turuncu / yeşil link-in-bio stili */
:root {
  --mh-bg: #f4f5fa;
  --mh-orange: #e67e22;
  --mh-orange-light: #f39c12;
  --mh-green: #2ecc71;
  --mh-text: #2c3e50;
  --mh-text-muted: #7f8c8d;
  --mh-card: #ffffff;
  --mh-border: rgba(230, 126, 34, 0.12);
  --mh-radius: 20px;
  --mh-shadow: 0 8px 24px rgba(44, 62, 80, 0.08);
}

.mh-comments-top {
  position: relative;
  z-index: 6;
  background: var(--mh-bg);
  margin-top: 0;
  padding: 12px 16px 20px;
}

.mh-comments-top__inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
}

.mh-comments-wrap {
  padding: 0;
}

.mh-card {
  background: var(--mh-card);
  border-radius: var(--mh-radius);
  box-shadow: var(--mh-shadow);
  padding: 1.25rem 1.35rem;
  max-width: 100%;
  border: 1px solid var(--mh-border);
  font-family: Poppins, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.mh-google-hdr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(127, 140, 141, 0.2);
}

.mh-google-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.mh-google-score {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--mh-text);
  line-height: 1;
}

.mh-google-stars {
  color: var(--mh-orange-light);
  font-size: 1rem;
  letter-spacing: 1px;
}

.mh-google-count {
  font-size: 0.8rem;
  color: var(--mh-text-muted);
  width: 100%;
}

.mh-content-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.mh-card__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mh-orange);
  margin-bottom: 6px;
}

.mh-card__title {
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 4.5vw, 1.5rem);
  font-weight: 700;
  color: var(--mh-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.mh-card__text {
  font-size: 14px;
  color: #5a6a7a;
  line-height: 1.75;
  margin: 0 0 12px;
}

.mh-card__text:last-child {
  margin-bottom: 0;
}

.mh-card__text strong {
  color: var(--mh-text);
  font-weight: 600;
}

.mh-service {
  padding: 14px 0;
  border-bottom: 1px solid rgba(127, 140, 141, 0.15);
}

.mh-service:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mh-service h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--mh-text);
}

.mh-service p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #5a6a7a;
}

.mh-comments-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mh-comment {
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid rgba(127, 140, 141, 0.15);
  border-radius: 14px;
  background: #fafbfc;
  transition: box-shadow 0.2s ease;
}

.mh-comment:hover {
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.08);
}

.mh-comment__avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.mh-comment__avatar svg {
  display: block;
  width: 36px;
  height: 36px;
}

.mh-comment__body {
  flex: 1;
  min-width: 0;
}

.mh-comment__hdr {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.2rem;
}

.mh-comment__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mh-text);
}

.mh-comment__date {
  font-size: 0.72rem;
  color: var(--mh-text-muted);
}

.mh-comment__stars {
  color: var(--mh-orange-light);
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.mh-comment__text {
  margin: 0 0 0.4rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #4a5568;
  word-break: break-word;
}

.mh-comment__reply {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mh-orange);
  cursor: default;
}

/* Sayfa gövdesi ile uyum */
.entry-content {
  background: var(--mh-bg) !important;
}

#hero-accent {
  display: none;
}

@media (max-width: 767px) {
  .mh-comments-top {
    margin-top: 0;
    padding: 10px 12px 16px;
  }

  .mh-card {
    padding: 1rem;
    border-radius: 16px;
  }

  .mh-google-hdr {
    flex-direction: row;
    align-items: center;
  }

  .mh-google-count {
    width: auto;
  }
}

@media (min-width: 768px) {
  .mh-comments-top {
    margin-top: 0;
    padding-bottom: 28px;
  }

  .mh-comments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

.site-info {
  background: var(--mh-text);
  color: #fff;
  padding: 1.1rem 16px;
  margin-top: 0;
}

.site-info .inside-site-info {
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
}

.site-info .copyright-bar {
  text-align: center;
}

.site-info .copyright {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

/* Kayan danışan yorumları */
.mh-marquee-block {
  margin-top: 16px;
}

.mh-marquee-card {
  overflow: hidden;
}

.mh-marquee-intro {
  font-size: 13px;
  color: #5a6a7a;
  line-height: 1.6;
  margin: 0 0 14px;
}

.mh-marquee {
  margin: 0 -0.35rem;
  overflow: hidden;
}

.mh-marquee__track {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.mh-marquee__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  width: max-content;
  will-change: transform;
  animation: mh-marquee-right 180s linear infinite;
}

.mh-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 8px 14px;
  background: #fafbfc;
  border: 1px solid rgba(127, 140, 141, 0.15);
  border-radius: 999px;
  font-size: 12px;
  color: #4a5568;
  white-space: nowrap;
}

.mh-marquee__stars {
  color: var(--mh-orange-light);
  font-size: 10px;
  letter-spacing: 1px;
}

.mh-marquee__name {
  font-weight: 600;
  color: var(--mh-text);
}

.mh-marquee__text {
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes mh-marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Güven bandı */
.mh-trust-bar {
  margin-top: 16px;
}

.mh-trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mh-trust-stat {
  text-align: center;
  padding: 12px 8px;
  background: #fafbfc;
  border-radius: 12px;
  border: 1px solid rgba(127, 140, 141, 0.12);
}

.mh-trust-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mh-orange);
  line-height: 1.2;
}

.mh-trust-stat span {
  font-size: 11px;
  color: var(--mh-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mh-trust-note {
  font-size: 13px;
  line-height: 1.65;
  color: #5a6a7a;
  margin: 0 0 14px;
  padding: 10px 12px;
  background: rgba(230, 126, 34, 0.06);
  border-radius: 10px;
  border-left: 3px solid var(--mh-orange);
}

.mh-trust-note i {
  color: var(--mh-orange);
  margin-right: 4px;
}

.mh-trust-cta {
  display: flex;
  gap: 10px;
}

.mh-trust-cta .mh-cta {
  flex: 1;
}

@media (min-width: 768px) {
  .mh-trust-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mh-marquee__inner {
    animation-duration: 240s;
  }
}
