/* Page background + sticky footer reuse */
html,
body {
  height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-secondary);
}
main {
  flex: 1 1 auto;
}

/* Hero wrapper */
.privacy-hero {
  padding: 3rem 0;
}

/* Card */
.privacy-card {
  display: flex;
  flex-direction: column;
  max-width: 45rem; /* aligns with your other pages */
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 1rem;
  padding: 2.5rem 3rem;
  gap: 2rem;
}

.header-logo {
  display: flex;
  justify-content: center;
  margin: 2rem;
}

.logo-wrap img {
  height: 5rem;
  width: auto;
  display: block;
}

/* Typography rhythm (reuses global heading sizes) */
.privacy-card h1 {
  text-align: center;
  margin-bottom: 0.25rem;
}
.privacy-card .h1-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}

.pv-item {
  margin-bottom: 3rem;
}

.pv-section + .pv-section {
  margin-top: 2rem;
}
.pv-section h2 {
  margin-bottom: 3rem;
}
.pv-section h3 {
  margin: 1rem 0 0.25rem;
}

/* Lists + notes */
.pv-list {
  margin: 0.5rem 0 0.75rem 0;
}

.pv-note {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-black);
  margin: 5rem 0 0;
}

/* Dividers */
.privacy-card hr {
  border: 0;
  height: 2px;
  background: var(--color-border, #85858544);
  margin: 1.5rem 0;
}

/* Related resources */
.pv-section .pv-links {
  margin-left: 1.25rem;
  margin-bottom: 4rem;
}

.updated {
  margin: 5rem 0;
  color: var(--color-black);
  text-align: right;
}

/* Inline arrow icon alignment (you used this pattern elsewhere) */
.blog-link > img {
  width: 1em;
  height: 1em;
  margin-left: 0.35em;
  display: inline-block;
  vertical-align: -0.15em;
}

@media (max-width: 450px) {
  /* Card */
  .privacy-card {
    display: flex;
    flex-direction: column;
    max-width: 45rem; /* aligns with your other pages */
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }
}
