.mghl-section {
  --mghl-green: #173f3c;
  --mghl-green-2: #245b55;
  --mghl-gold: #c7a96b;
  --mghl-ink: #17211f;
  --mghl-muted: #64706d;
  padding: 92px 24px;
  background: linear-gradient(180deg, #f5f8f6 0%, #ffffff 100%);
}

.mghl-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.mghl-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.mghl-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--mghl-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mghl-heading-row h2 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--mghl-ink);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.mghl-heading-row p {
  max-width: 680px;
  margin: 0;
  color: var(--mghl-muted);
  font-size: 17px;
  line-height: 1.7;
}

.mghl-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--mghl-green);
  border-radius: 999px;
  color: var(--mghl-green) !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.mghl-view-all:hover {
  background: var(--mghl-green);
  color: #fff !important;
}

.mghl-view-all--mobile {
  display: none;
}

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

.mghl-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid #dce7e2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(18, 60, 56, .09);
  transition: transform .25s ease, box-shadow .25s ease;
}

.mghl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(18, 60, 56, .15);
}

.mghl-media {
  position: relative;
  display: block;
  height: 235px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mghl-green), var(--mghl-green-2));
}

.mghl-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.mghl-card:hover .mghl-media img {
  transform: scale(1.04);
}

.mghl-placeholder {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: #fff;
  text-align: center;
}

.mghl-placeholder strong {
  font-size: 24px;
  letter-spacing: .03em;
}

.mghl-placeholder small {
  color: rgba(255, 255, 255, .72);
}

.mghl-code {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--mghl-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}

.mghl-card-body {
  padding: 22px;
}

.mghl-location {
  display: block;
  margin-bottom: 9px;
  color: var(--mghl-green-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mghl-card h3 {
  min-height: 52px;
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.4;
}

.mghl-card h3 a {
  color: var(--mghl-ink) !important;
  text-decoration: none !important;
}

.mghl-price {
  margin-bottom: 16px;
  color: var(--mghl-green);
  font-size: 21px;
  font-weight: 850;
}

.mghl-price small {
  color: var(--mghl-muted);
  font-size: 12px;
  font-weight: 600;
}

.mghl-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.mghl-features span {
  padding: 8px 10px;
  border-radius: 9px;
  background: #eef5f2;
  color: #52615d;
  font-size: 12px;
}

.mghl-features strong {
  color: var(--mghl-green);
}

.mghl-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.mghl-actions a {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
}

.mghl-details {
  background: var(--mghl-green);
  color: #fff !important;
}

.mghl-whatsapp {
  background: #168c49;
  color: #fff !important;
}

@media (max-width: 1024px) {
  .mghl-section {
    padding: 74px 20px;
  }

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

@media (max-width: 700px) {
  .mghl-section {
    padding: 58px 14px;
  }

  .mghl-heading-row {
    margin-bottom: 28px;
  }

  .mghl-heading-row h2 {
    font-size: 36px;
  }

  .mghl-heading-row p {
    font-size: 16px;
  }

  .mghl-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mghl-view-all--desktop {
    display: none;
  }

  .mghl-view-all--mobile {
    display: flex;
    width: 100%;
    margin-top: 26px;
  }

  .mghl-media {
    height: 245px;
  }
}
