/* Responsibility: privacy-policy page content sections, list spacing, and revision date alignment. */

.privacy-policy-content {
  max-width: 920px;
  margin-bottom: 180px;
}

.privacy-policy__section {
  padding-top: 58px;
  border-top: 1px solid var(--line-gray);
}

.privacy-policy__section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.privacy-policy__section + .privacy-policy__section {
  margin-top: 58px;
}

.privacy-policy__section .content-section__title {
  margin-bottom: 24px;
  font-size: clamp(24px, 2.4vw, 32px);
}

.privacy-policy__list {
  margin-top: 18px;
}

.privacy-policy__date {
  text-align: right;
}

@media (max-width: 820px) {
  .privacy-policy-content {
    max-width: 100%;
    margin-bottom: 96px;
  }

  .privacy-policy__section,
  .privacy-policy__section + .privacy-policy__section {
    padding-top: 40px;
    margin-top: 40px;
  }

  .privacy-policy__section:first-of-type {
    padding-top: 0;
    margin-top: 0;
  }

  .privacy-policy__section .content-section__title {
    font-size: 24px;
  }
}
