@charset "utf-8";


/* --------------------------------------------------------------------------
   Legal
-------------------------------------------------------------------------- */

	article {

		max-width: 70rem;
		margin: 0 auto;
		padding: var(--space-80) var(--space-32) ;
		color: var(--color-brand-content-high);
		font-size: var(--font-size-body-m);
		line-height: var(--line-height-body-m);

		header {

			margin-bottom: var(--space-80);

			h1 {
				margin: 0 0 var(--space-16);
				font-size: var(--font-size-heading-l);
				font-weight: var(--font-weight-semibold);
				line-height: var(--line-height-heading-l);
			}

		}

		p {
			margin: 0 0 var(--space-24);
		}

		section {

			margin-top: var(--space-56);

			h2 {
				margin: 0 0 var(--space-32);
				font-size: var(--font-size-body-l);
				font-weight: var(--font-weight-semibold);
				line-height: var(--line-height-body-l);
				text-align: center;
			}

		}

		ul,
		ol {

			margin: 0 0 var(--space-24);
			padding-left: var(--space-32);

			li {
				margin-bottom: var(--space-8);
			}

			ol {
				margin-top: var(--space-8);
				margin-bottom: 0;
			}

		}

	}
