/* Global Styles */
@import "../global/global.css";

/* Page Styles */
.terms-of-service {
  margin-top: 44px;
  padding-top: 20px;
  padding-bottom: 40px;
  font-size: 14px;
}

.terms-of-service .page-container {
  max-width: 1024px;
}

.terms-of-service .section-content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.terms-of-service .page-title {
  font-family: var(--font-thierry);
  text-transform: uppercase;
  font-size: 24px;
  text-align: center;
  margin-bottom: 16px;
}

.terms-of-service .page-update-date,
.terms-of-service .page-subtitle {
  font-size: 18px;
  font-style: italic;
}

.terms-of-service .page-section,
.terms-of-service .section-items {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.terms-of-service .section-title {
  font-family: var(--font-thierry);
  text-transform: uppercase;
  font-size: 18px;
}

.terms-of-service .page-link {
  text-decoration: underline;
  font-style: italic;
}

.terms-of-service p {
  text-indent: 24px;
}

.terms-of-service ol {
  padding-left: 24px;
  list-style: lower-alpha inside;
}

@media (min-width: 768px) {
  .terms-of-service {
    margin-top: 80px;
    padding-top: 32px;
    padding-bottom: 56px;
    font-size: 16px;
  }

  .terms-of-service .section-content {
    row-gap: 20px;
  }

  .terms-of-service .page-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .terms-of-service .page-update-date,
  .terms-of-service .page-subtitle {
    font-size: 20px;
    line-height: 1.25;
  }

  .terms-of-service .page-section,
  .terms-of-service .section-items {
    row-gap: 14px;
  }

  .terms-of-service .section-title {
    font-size: 20px;
    line-height: 1.25;
  }

  .terms-of-service p {
    text-indent: 40px;
  }

  .terms-of-service ol {
    padding-left: 44px;
  }
}

@media (min-width: 1280px) {
  .terms-of-service {
    margin-top: 116px;
    padding-top: 44px;
    padding-bottom: 80px;
  }


  .terms-of-service .section-content {
    row-gap: 32px;
  }

  .terms-of-service .page-title {
    font-size: 48px;
    margin-bottom: 32px;
  }

  .terms-of-service .page-update-date,
  .terms-of-service .page-subtitle {
    font-size: 24px;
    line-height: 1.25;
  }

  .terms-of-service .page-section,
  .terms-of-service .section-items {
    row-gap: 16px;
  }

  .terms-of-service .section-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .terms-of-service p {
    text-indent: 64px;
  }

  .terms-of-service ol {
    padding-left: 64px;
  }
}