/**
 * @file
 * Special classes for stylized text.
 **/

/** Page summary box **/
.page-summary {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 0 1rem 0;
  padding: 20px;
  border: 1px solid var(--black);
  background-color: var(--light-grey);
  color: var(--black);
}

.page-summary p:last-of-type {
  margin-bottom: 0;
}

/** Notification box **/
.notification {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1em;
  padding: 10px;
  border: 1px solid var(--black);
  background-color: var(--light-grey);
  color: var(--black);
}

.notification-left {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1em;
  padding: 10px;
  border: 1px solid var(--black);
  background-color: var(--light-grey);
  color: var(--black);
}

.gold-notification {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
  border: 1px solid var(--black);
  background-color: var(--laurier-gold);
  color: var(--black);
}

/** Subtitle, used in some contexts like job title on profiles that should be visually prominent but not semantically distinct. **/
.subtitle {
  margin-bottom: 0.75em;
  font-size: 1.5rem;
}
