/* ==============================
   POLICIES PAGE STYLES
   Shared by Privacy Policy & Terms of Use
   ============================== */

/* Header spacing */
.policy-page {
  padding-top: 160px;
  padding-bottom: 100px;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

/* Date badge */
.policy-date {
  display: inline-block;
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-orange-primary);
  margin-bottom: 16px;
}

/* Page title */
.policy-page h1 {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 16px;
  line-height: 1.15;
}

/* Intro paragraph */
.policy-intro {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--secondary-text);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 600px;
}

/* Content card */
.policy-content {
  background: var(--white-color);
  border-radius: 20px;
  padding: 56px 48px;
  box-shadow: var(--card-shadow);
}

/* Section headings */
.policy-content h2 {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-text);
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.policy-content h2:first-child {
  margin-top: 0;
}

/* Body paragraphs */
.policy-content p {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

/* Links within content */
.policy-content a {
  color: var(--brand-orange-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.policy-content a:hover {
  color: #c44700;
  text-decoration: underline;
}

/* Ordered lists */
.policy-content ol {
  padding-left: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.policy-content ol li {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 4px;
}

.policy-content ol li:last-child {
  margin-bottom: 0;
}

/* Unordered lists */
.policy-content ul {
  padding-left: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
  list-style: disc;
}

.policy-content ul li {
  font-family: "Harmonia Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 4px;
}

.policy-content ul li:last-child {
  margin-bottom: 0;
}

/* Divider between sections */
.policy-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 40px 0;
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 900px) {
  .policy-page {
    padding-top: 130px;
    padding-bottom: 80px;
  }

  .policy-page h1 {
    font-size: 34px;
  }

  .policy-content {
    padding: 40px 32px;
  }

  .policy-content h2 {
    font-size: 21px;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .policy-page {
    padding-top: 110px;
    padding-bottom: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .policy-page h1 {
    font-size: 28px;
  }

  .policy-intro {
    font-size: 15px;
  }

  .policy-content {
    padding: 32px 20px;
    border-radius: 16px;
  }

  .policy-content h2 {
    font-size: 19px;
    margin-top: 36px;
    margin-bottom: 14px;
  }

  .policy-content p,
  .policy-content ol li,
  .policy-content ul li {
    font-size: 15px;
  }
}
