/* =============================================
   Privacy Policy page – styles only (shared layout in style.css)
   ============================================= */

/* ===== PAGE HERO ===== */
.au-hero {
  position: relative;
  margin: 13px 16px 0;
  border-radius: 30px;
  overflow: hidden;
  height: 440px;
  background: url('https://cdn.codia.ai/figma/CjSKfsvHxed5WQZqe4sla3/img-fdda43c98d45c028.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.au-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 30px;
}

.au-hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 20px 40px;
  text-align: center;
}

.au-breadcrumb {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.6px;
}

.au-breadcrumb a {
  color: #ffffff;
  transition: color 0.2s;
}

.au-breadcrumb a:hover {
  color: var(--orange);
}

.au-page-title {
  letter-spacing: 1.38px;
}

/* ===== POLICY CONTENT ===== */
.pp-content {
  background: var(--white);
  padding: 64px 16px 96px;
}

.pp-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

.pp-block {
  margin-bottom: 56px;
}

.pp-block--last {
  margin-bottom: 0;
}

.pp-title {
  margin-bottom: 28px;
}

.pp-subtitle {
  margin-top: 32px;
  margin-bottom: 16px;
}

.pp-block > .pp-subtitle:first-child,
.pp-block > .pp-title + .pp-subtitle {
  margin-top: 0;
}

.pp-title + .pp-subtitle {
  margin-top: 0;
}

.pp-text {
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.pp-text:last-child {
  margin-bottom: 0;
}

.pp-list {
  margin: 12px 0 24px;
  padding-left: 28px;
  list-style: disc;
}

.pp-list li {
  margin-bottom: 14px;
}

.pp-list li:last-child {
  margin-bottom: 0;
}

.pp-list--definitions li {
  margin-bottom: 18px;
}

.pp-list--definitions strong {
  font-weight: 600;
  color: var(--black);
}

.pp-content a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}

.pp-content a:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .au-hero {
    margin: 10px 10px 0;
    height: 300px;
    border-radius: 20px;
  }

  .au-breadcrumb {
    font-size: 16px;
  }

  .pp-content {
    padding: 40px 10px 72px;
  }

  .pp-inner {
    padding: 0 16px;
  }

  .pp-block {
    margin-bottom: 40px;
  }

  .pp-title {
    margin-bottom: 20px;
  }

  .pp-subtitle {
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .pp-text,
  .pp-list li {
    line-height: 1.7;
  }

  .pp-list {
    padding-left: 22px;
  }
}
