/* ── Policy pages override ── */

/* Body scrollabile */
body.policy-page {
  overflow: auto;
  height: auto;
  cursor: auto;
}
body.policy-page #cur,
body.policy-page #cur-ring { display: none; }

/* Shell e page non più fixed-height */
body.policy-page .shell {
  height: auto;
  min-height: 100vh;
  align-items: flex-start;
}
.page-policy {
  width: 100%;
  max-width: var(--max);
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 36px 0;
}

/* Header invariato — già coperto da style.css */

/* ── Contenuto policy ── */
.policy-main {
  padding: 64px 0 80px;
  max-width: 720px;
}

.policy-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(90,91,97,.1);
}

.policy-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--black);
  margin-top: 12px;
  margin-bottom: 16px;
}

.policy-date {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(90,91,97,.5);
}

/* Corpo testo — tipografia leggibile per testi lunghi */
.policy-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #4a4b51;
}

.policy-body h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-top: 48px;
  margin-bottom: 16px;
}

.policy-body h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 10px;
}

.policy-body p {
  margin-bottom: 18px;
}

.policy-body ul,
.policy-body ol {
  padding-left: 20px;
  margin-bottom: 18px;
}

.policy-body li {
  margin-bottom: 8px;
}

.policy-body a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(228,67,22,.25);
  transition: border-color .2s;
}
.policy-body a:hover {
  border-color: var(--red);
}

.policy-body strong {
  font-weight: 500;
  color: var(--black);
}

/* Footer — link aggiuntivo home */
body.policy-page footer {
  border-top: 1px solid rgba(90,91,97,.1);
  padding-top: 20px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .policy-main { padding: 40px 0 60px; }
  .policy-title { font-size: clamp(28px, 8vw, 40px); }
  .policy-body { font-size: 15px; }
  .policy-body h2 { font-size: 18px; margin-top: 36px; }
}
