.legal-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.page-emblem {
  position: absolute;
  top: 50%;
  right: -28vh;
  transform: translateY(-50%);
  height: 80vh;
  width: auto;
  max-width: none;
  opacity: 0.08;
  filter: invert(1);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.legal-page .section-label-wrapper {
  margin-bottom: 6vh;
}

.legal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 70ch;
}

.legal-body h2 {
  font-size: 2.6vh;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--color-text);
  margin-top: 4vh;
  margin-bottom: 1.6vh;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p {
  font-size: 2.0vh;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 2vh;
}

.legal-cta {
  font-size: 1.5vh;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  align-self: flex-start;
  margin-top: 5vh;
}

.legal-cta::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background-color: var(--color-accent);
  transition: width 0.25s ease;
}

.legal-cta:hover::after {
  width: 100%;
}

.legal-fine {
  font-size: 1.6vh;
  font-weight: 300;
  color: var(--color-text);
  opacity: 0.55;
  margin-top: 4vh;
}

@media (max-width: 767px) {
  .legal-body h2  { font-size: 5.8vw; }
  .legal-body p   { font-size: 4vw; }
  .legal-cta      { font-size: 3.7vw; }
  .legal-fine     { font-size: 3.5vw; }

  .page-emblem { display: none; }
}
