:root {
  /* Font Sizes: */
  --text-size-80: 0.79rem;
  --text-size-90: 0.889rem;
  --text-size-100: 1rem;
  --text-size-200: 1.125rem;
  --text-size-300: 1.266rem;
  --text-size-400: 1.424rem;
  --text-size-500: 1.602rem;
  --text-size-600: 1.802rem;
  --text-size-700: 2.027rem;
  /* Grayscale */
  --white: #fff;
  --grayccc: #ccc; /* rgb(204, 204, 204s), 20% */
  --grayddd: #ddd;
  --gray333: #333;
  --black: #000;
}

body,
html {
  font-size: var(--text-size-100);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: var(--gray333);
}

/* TYPOGRAPHY */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-wrap: pretty;
  line-height: 1.15;
  letter-spacing: -0.022em;
}

h1,
.h1 {
  font-size: var(--text-size-700);
}

h2,
.h2 {
  font-size: var(--text-size-600);
}

h3,
.h3 {
  font-size: var(--text-size-500);
}

h4,
.h4 {
  font-size: var(--text-size-400);
}

h5,
.h5 {
  font-size: var(--text-size-300);
}

h6,
.h6 {
  font-size: var(--text-size-200);
}

.h1.compact,
.h2.compact,
.h3.compact,
.h4.compact,
.h5.compact,
.h6.compact {
  margin-top: 1rem;
}

p,
table {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

p,
ul,
ol {
  text-wrap: pretty;
}

/* BREADCRUMBS */
.breadcrumbs > a {
  text-decoration: none;
}

.breadcrumbs > a::after {
  content: " > ";
  padding: 0 0.125rem;
}
