p,
.P,
.Subtitle {
  font-size: var(--sl-font-size-small);
  color: var(--sl-color-gray-800);
  margin-top: 0px;
}

.Title {
  text-align: center;
}

.Subtitle {
  text-align: center;
  margin-bottom: 0px;
  color: var(--sl-color-gray-500);
}

a,
a:visited {
  text-decoration: none;
  color: var(--sl-color-primary-500);
  cursor: pointer;
}

a:hover {
  color: var(--sl-color-primary-600);
  cursor: pointer;
}

:host {
  display: block;
}

:host([hidden]) {
  display: none;
}

:host {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--st-content-max-width);
  height: auto;
  padding: var(--sl-spacing-large);
  background-color: var(--st-content-background);
  display: flex;
  flex-direction: column;
}
:host > :not(:first-child) {
  margin-top: var(--sl-spacing-medium);
}
:host h4 {
  font-size: var(--sl-font-size-medium);
  margin: 0;
}

.Title, .Subtitle {
  text-align: left;
}