/* PRIVACY PAGE */

.privacy-page {
  color: #212529;
}

/* Blocchi introduttivi grigi */

.privacy-page > section[style*="rgba(0, 0, 0, 0.03)"] {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Larghezza e leggibilità del testo */

.privacy-content {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #2b2b2b;
}

/* Paragrafi */

.privacy-content p {
  margin-bottom: 1.05rem;
}

/* Sezioni interne */

.privacy-content > section {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.privacy-content > section:last-child {
  border-bottom: 0;
}

/* Titoli principali delle sezioni */

.privacy-content h2.section-title, .privacy-content h3.section-title {
  margin-bottom: 1.25rem !important;
  line-height: 1.25;
}

/* Sottotitoli: Dati di navigazione, Google Maps, ecc. */

.privacy-content h3.h5, .privacy-content .h5 {
  color: #14395b;
  letter-spacing: 0.01em;
  margin-top: 2rem !important;
  margin-bottom: 0.75rem !important;
}

/* Liste puntate con pennellata */

.privacy-content ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 1.25rem;
}

.privacy-content ul li {
  position: relative;
  margin-bottom: 0.45rem;
  padding-left: 1.75rem;
}

.privacy-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 0.9rem;
  height: 0.34rem;
  transform: translateY(-50%) rotate(-4deg);
  border-radius: 999px;
  background-color: var(--brush-bullet-color, #2f57b7);
  opacity: 0.95;
}

.privacy-content ul li::after {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.9em;
  width: 0.62rem;
  height: 0.18rem;
  transform: translateY(-50%) rotate(3deg);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

/* Liste numerate: restano numerate */

.privacy-content ol {
  padding-left: 1.35rem;
  margin-bottom: 1.25rem;
}

.privacy-content ol li {
  margin-bottom: 0.45rem;
  padding-left: 0.15rem;
}

/* Link */

.privacy-content a {
  color: #14395b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content a:hover {
  color: #0f6f75;
}

/* Blocchi dati del titolare */

/* Spaziatura tra Privacy e Cookie Policy */

.privacy-page section + section {
  scroll-margin-top: 140px;
}

/* Hero privacy: leggero overlay per leggibilità */

.privacy-page ~ .subscribe-banner {
  margin-top: 0;
}

/* Responsive */

@media (max-width: 768px) {
  .privacy-content {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
  .privacy-content > section {
    margin-bottom: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .privacy-content h2.section-title, .privacy-content h3.section-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 768px) {
  .privacy-page .text-center h1, .privacy-page .text-center h2 {
    font-size: 1.8rem;
  }
}

.privacy-owner-card {
  background: #ffffff;
  border: 1px solid rgba(18, 72, 108, 0.12);
  border-radius: 1.25rem;
  padding: 2rem 2.25rem;
  margin: 1.75rem 0 2.25rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
}

.privacy-owner-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #12486c;
  line-height: 1.3;
  margin-bottom: 1.6rem;
}

.privacy-owner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2.5rem;
  row-gap: 1.35rem;
}

.privacy-owner-grid > div {
  min-width: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(18, 72, 108, 0.08);
}

.privacy-owner-grid > div:nth-last-child(-n + 2) {
  border-bottom: 0;
  padding-bottom: 0;
}

.privacy-owner-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  color: #12486c;
  opacity: 0.82;
  margin-bottom: 0.35rem;
}

.privacy-owner-grid span:not(.privacy-owner-label), .privacy-owner-grid a {
  display: inline-block;
  font-size: 0.98rem;
  line-height: 1.45;
}

.privacy-owner-card a {
  color: #12486c;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: break-word;
}

.privacy-owner-card a:hover {
  color: #0f6f75;
}

@media (max-width: 768px) {
  .privacy-owner-card {
    padding: 1.5rem 1.25rem;
    margin: 1.5rem 0 2rem;
    border-radius: 1rem;
  }
}

@media (max-width: 768px) {
  .privacy-owner-title {
    font-size: 1.18rem;
    margin-bottom: 1.35rem;
  }
}

@media (max-width: 768px) {
  .privacy-owner-grid {
    grid-template-columns: 1fr;
    row-gap: 1.05rem;
  }
}

@media (max-width: 768px) {
  .privacy-owner-grid > div {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(18, 72, 108, 0.08);
  }
}

@media (max-width: 768px) {
  .privacy-owner-grid > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

