html.legal-page .legal-page-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

html.legal-page main.page-main {
  flex: 1;
  padding: 0;
}

html.legal-page .legal-page-main {
  display: block;
  padding: 0;
  min-height: 0;
}

html.legal-page .legal-content {
  width: min(692px, 92vw);
  margin: 0 auto;
  padding: 56px 0 96px;
}

html.legal-page .legal-hero {
  text-align: center;
  margin-bottom: 56px;
}

html.legal-page .legal-page-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  line-height: 1.1;
}

html.legal-page .legal-doc-header {
  text-align: center;
  padding: 0 0 28px;
  border-bottom: 1px solid #d2d2d7;
  margin-bottom: 40px;
}

html.legal-page .legal-doc-kicker {
  margin: 14px 0 0;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1d1d1f;
}

html.legal-page .legal-doc-updated {
  margin: 0 0 32px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #6e6e73;
}

html.legal-page .legal-section {
  margin-bottom: 36px;
}

html.legal-page .legal-section:last-child {
  margin-bottom: 0;
}

html.legal-page .legal-section-title {
  margin: 0 0 14px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1d1d1f;
}

html.legal-page .legal-section p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #1d1d1f;
}

html.legal-page .legal-section p:last-child {
  margin-bottom: 0;
}

html.legal-page .legal-section ul {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #1d1d1f;
}

html.legal-page .legal-section li {
  margin-bottom: 0.35rem;
}

html.legal-page .legal-section a {
  color: #0066cc;
  text-decoration: none;
}

html.legal-page .legal-section a:hover {
  text-decoration: underline;
}

html.legal-page .legal-caps {
  font-weight: 600;
  letter-spacing: 0.01em;
}

html.legal-page .legal-updated {
  margin: 12px 0 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #6e6e73;
}

html.legal-page .legal-intro {
  margin-top: 28px;
}

html.legal-page .legal-intro p {
  margin: 0 0 1.15rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #1d1d1f;
}

html.legal-page .legal-intro p:last-child {
  margin-bottom: 0;
}

html.legal-page .legal-intro a,
html.legal-page .legal-hero a {
  color: #0066cc;
  text-decoration: none;
}

html.legal-page .legal-intro a:hover,
html.legal-page .legal-hero a:hover {
  text-decoration: underline;
}

html.legal-page .legal-faq-title {
  margin: 0 0 1.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  text-align: center;
}

html.legal-page .legal-faq-list {
  list-style: none;
}

html.legal-page .legal-faq-item {
  border-top: 1px solid #d2d2d7;
}

html.legal-page .legal-faq-item:last-child {
  border-bottom: 1px solid #d2d2d7;
}

html.legal-page .legal-faq-btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.45;
}

html.legal-page .legal-faq-btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  transition: transform 0.25s ease;
  color: #6e6e73;
}

html.legal-page .legal-faq-item.is-open .legal-faq-btn svg {
  transform: rotate(180deg);
}

html.legal-page .legal-faq-body {
  display: none;
  padding: 0 0 22px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #424245;
}

html.legal-page .legal-faq-item.is-open .legal-faq-body {
  display: block;
}

html.legal-page .legal-faq-body p {
  margin: 0 0 0.9rem;
}

html.legal-page .legal-faq-body p:last-child {
  margin-bottom: 0;
}

html.legal-page .legal-faq-body ul {
  margin: 0.35rem 0 0.9rem 1.1rem;
  padding: 0;
}

html.legal-page .legal-faq-body li {
  margin-bottom: 0.35rem;
}

html.legal-page .legal-faq-body a {
  color: #0066cc;
  text-decoration: none;
}

html.legal-page .legal-faq-body a:hover {
  text-decoration: underline;
}

html.legal-page .ps-legal-footer {
  flex-shrink: 0;
}

html.legal-page .ps-cookie-consent {
  max-width: min(360px, calc(100% - 32px));
}

@media (max-width: 640px) {
  html.legal-page .legal-content {
    padding: 40px 0 72px;
  }

  html.legal-page .legal-hero {
    margin-bottom: 40px;
  }

  html.legal-page .ps-legal-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
