/* =========================
   INNER PAGES (banner, breadcrumb, policy text)
   Reuse on policy / legal pages — copy with this file
========================= */

.page-banner {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  padding: 48px 6%;
  background:
    linear-gradient(105deg, rgba(7, 15, 28, 0.92) 0%, rgba(15, 39, 68, 0.88) 45%, rgba(39, 108, 245, 0.35) 100%),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1920&q=80") center / cover no-repeat;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 136, 255, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner__title {
  position: relative;
  z-index: 1;
  max-width: 720px;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.page-breadcrumb {
  padding: 14px 6%;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.page-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 13px;
}

.page-breadcrumb__list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.page-breadcrumb__list a:hover {
  color: var(--primary-hover);
}

.page-breadcrumb__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}

.page-breadcrumb__list li:not(:last-child)::after {
  content: "/";
  color: var(--text-light);
  font-weight: 400;
}

.page-breadcrumb__list li[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

.page-content {
  padding: 48px 6% 72px;
}

.policy-text {
  max-width: 100%;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: var(--shadow);
}

.policy-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 14px;
  line-height: 1.35;
}

.policy-text h2:first-child {
  margin-top: 0;
}

.policy-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

.policy-text p:last-child {
  margin-bottom: 0;
}

.policy-text a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.policy-text a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.policy-text ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.policy-text li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 8px;
}

.policy-text__updated {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 8px;
}

@media (max-width: 768px) {
  .page-banner {
    min-height: 160px;
    padding: 32px 5%;
  }

  .page-breadcrumb {
    padding: 12px 5%;
  }

  .page-content {
    padding: 32px 5% 56px;
  }

  .policy-text {
    padding: 28px 22px;
    border-radius: 12px;
  }

  .policy-text h2 {
    font-size: 19px;
  }
}
