/*######################################################################

		Legal

************************************************************************/

.legal-content {
  width: min(1000px, 100%);
  margin-bottom: 160px;
}

.legal-content__updated {
  margin-top: 40px;
  color: #5b5b57;
  font-size: var(--font-size-14);
  line-height: 1.7;
}

.legal-content h2 {
  margin: 40px 0 12px;
  font-size: var(--font-size-24);
  line-height: 1.5;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-size: var(--font-size-18);
  line-height: 1.6;
}

.legal-content p,
.legal-content li {
  color: #383834;
  font-size: var(--font-size-16);
  line-height: 1.9;
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content ul + p,
.legal-content ol + p {
  margin-top: 12px;
}

.legal-content ul,
.legal-content ol {
  margin: 12px 0 0;
  padding-left: 1.5em;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li + li {
  margin-top: 6px;
}

.legal-content a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.legal-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .3s ease;
}

.legal-content a:hover {
  text-decoration: none;
}

.legal-content a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: var(--font-size-16);
}

.legal-table th,
.legal-table td {
  padding: 16px;
  border: 1px solid #b8b8b1;
  vertical-align: top;
  line-height: 1.8;
}

.legal-table th {
  width: 30%;
  text-align: left;
  color: #111;
}

.legal-table td {
  color: #383834;
}

@media not all and (min-width: 768px){
  .legal-content {
    margin-bottom: 80px;
  }

  .legal-content h2 {
    font-size: var(--font-size-21);
  }

  .legal-content h3 {
    font-size: var(--font-size-16);
  }
}

@media not all and (min-width: 468px){
  .legal-content p,
  .legal-content li,
  .legal-content__updated,
  .legal-table {
    font-size: var(--font-size-14);
  }

  .legal-content h2 {
    font-size: var(--font-size-18);
  }

  .legal-content h3 {
    font-size: var(--font-size-16);
  }

  .legal-table th,
  .legal-table td {
    padding: 12px;
  }
}
