.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgb(8 23 39 / 65%);
  padding: 16px 18px;
}

.privacy-section h2 {
  margin: 0 0 5px;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.privacy-section p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.source-link {
  color: #bfd0e1;
  font-size: 12px;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .privacy-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
