/* ==================================================
   PRIVACY POLICY HERO – GLOBAL CONTAINER SAFE VERSION
================================================== */

:root {
  --prv-max-width: clamp(1280px, 92vw, 1680px);
  --prv-padding-x: clamp(24px, 4vw, 72px);
}

/* ================= HERO ================= */

.prv-hero {
  position: relative;
  width: 100%;
  min-height: 56vh;
  max-height: 720px;

  display: flex;
  align-items: center;

  overflow: hidden;
  background: #000;
}

/* ================= NAVY GRADIENT BAR ================= */

.prv-hero {
  background: linear-gradient(
    135deg,
    #0b2a55 0%,
    #0f3a78 45%,
    #081f3f 100%
  );
}

/* ================= CONTENT ================= */

.prv-hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: var(--prv-max-width);
  margin-inline: auto;

  padding-inline: var(--prv-padding-x);
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prv-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  padding-bottom: clamp(56px, 8vh, 96px);
  padding-top: clamp(24px, 6vh, 48px);
}

/* ================= TYPOGRAPHY ================= */

.prv-hero-title {
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.prv-hero-sub {
  color: rgba(255,255,255,.9);
  font-size: clamp(15px, 1.1vw, 18px);
  max-width: 720px;
  margin-bottom: 20px;
}

.prv-hero-meta {
  color: rgba(255,255,255,.7);
  font-size: clamp(12px, .9vw, 14px);
  letter-spacing: 2.5px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .prv-hero {
    min-height: 48vh;
  }

  .prv-hero-content {
    padding-inline: 16px;
    text-align: center;
    align-items: center;
  }

  .prv-hero-sub {
    font-size: 15px;
  }

  .prv-hero-meta {
    font-size: 12px;
    letter-spacing: 2px;
  }

}
