/* ===========================
   RED MANGO — POLICIES.CSS
   =========================== */

.policy-main {
  background: var(--white);
  padding: 80px 60px 100px;
}

.policy-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.policy-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.policy-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.2;
}

.policy-subtext {
  font-size: 15px;
  font-weight: 500;
  color: #777;
  line-height: 1.7;
  margin-bottom: 40px;
}

.policy-section {
  margin-bottom: 34px;
}

.policy-subheading {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 400;
  color: #444;
  line-height: 1.7;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.policy-italic {
  font-size: 14px;
  font-style: italic;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.policy-numbered {
  padding-left: 20px;
  margin: 0;
}

.policy-numbered li {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

.policy-disclaimer,
.policy-nopets {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

.policy-nopets strong {
  color: var(--red);
  letter-spacing: 0.5px;
}

.policy-footnote {
  font-size: 12.5px;
  color: #999;
  line-height: 1.7;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.policy-footnote a {
  color: var(--red);
  text-decoration: none;
}

.policy-footnote a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .policy-main {
    padding: 60px 24px 80px;
  }
}