/* HealthMozo Editorial Policy Page */

.hmc-editorial-policy {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: inherit;
  color: #1f2937;
  line-height: 1.75;
}

.hmc-editorial-policy h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 12px;
  color: #0f172a;
  font-weight: 800;
  text-align: center;
}

.hmc-editorial-policy .hmc-updated-date {
  text-align: center;
  color: #64748b;
  font-size: 15px;
  margin-bottom: 42px;
}

.hmc-editorial-policy h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: #0f766e;
  margin-top: 42px;
  margin-bottom: 14px;
  font-weight: 750;
  position: relative;
  padding-left: 18px;
}

.hmc-editorial-policy h2::before {
  content: "";
  width: 5px;
  height: 70%;
  background: #14b8a6;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 15%;
}

.hmc-editorial-policy p {
  font-size: 17px;
  margin: 0 0 18px;
  color: #374151;
}

.hmc-editorial-policy a {
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 118, 110, 0.35);
}

.hmc-editorial-policy a:hover {
  color: #0d9488;
  border-bottom-color: #0d9488;
}

.hmc-policy-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 34px;
  margin-bottom: 24px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.hmc-policy-box:hover {
  transform: translateY(-3px);
  transition: 0.25s ease;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .hmc-editorial-policy {
    padding: 38px 16px;
  }

  .hmc-policy-box {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .hmc-editorial-policy p {
    font-size: 16px;
  }
}