/* ============================================================
   PRIVACY.HTML — Stili specifici di pagina
   ============================================================ */

/* ── LAYOUT ─────────────────────────────────────────────────── */
body {
  background: var(--eng-bg-light);
}

body::before {
  display: none;
}

body main {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 5% 80px;
}

/* ── PAGE HEADER ────────────────────────────────────────────── */
body .pp-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eng-accent);
  margin-bottom: 0.8rem;
}

body main h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  color: var(--eng-text);
}

body .pp-meta {
  font-size: 13px;
  color: var(--eng-text-light);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--eng-border);
}

/* ── CARDS ──────────────────────────────────────────────────── */
body .pp-card {
  background: var(--eng-white);
  border: 1px solid var(--eng-border);
  border-radius: 12px;
  padding: 2rem 2.2rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

body .pp-card h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--eng-text);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

body .pp-card h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background: var(--eng-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

body .pp-card p {
  color: var(--eng-text-light);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 0.7rem;
}

body .pp-card p:last-child { margin-bottom: 0; }

body .pp-card ul {
  margin: 0.5rem 0 0.7rem 1.2rem;
  color: var(--eng-text-light);
  font-size: 15px;
}

body .pp-card ul li { margin-bottom: 0.35rem; }
body .pp-card strong { color: var(--eng-text); font-weight: 600; }
body .pp-card a { color: var(--eng-accent); text-decoration: none; }
body .pp-card a:hover { text-decoration: underline; }

/* ── RIGHTS GRID ────────────────────────────────────────────── */
body .rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.9rem;
  margin-top: 0.8rem;
}

body .right-item {
  background: rgba(0, 113, 184, 0.04);
  border: 1px solid rgba(0, 113, 184, 0.14);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 14px;
  color: var(--eng-text-light);
  line-height: 1.5;
}

body .right-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 11px;
  color: var(--eng-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
body footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 5%;
  font-size: 13px;
  color: var(--eng-text-light);
  border-top: 1px solid var(--eng-border);
  background: var(--eng-white);
}

body footer a {
  color: var(--eng-text-light);
  text-decoration: none;
}

body footer a:hover { color: var(--eng-accent); }