.richText {
  font-size: 1.6rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
  color: var(--color-gray);
  *zoom: 1;
}

.richText:before,
.richText:after {
  content: " ";
  display: table;
}

.richText:after {
  clear: both;
}

.richText a:not(.button) {
  color: var(--color-gray);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gray);
}

.richText a:not(.button):hover {
  color: var(--color-blue-light);
  border-color: var(--color-blue-light);
}

.richText figure.image {
  margin: 2.4rem 0 4.8rem;
}

.richText figure.media {
  margin: 3.2rem 0;
}

.richText figcaption {
  font-size: 1.2rem;
  color: var(--color-gray-lighter);
  line-height: 1.5;
}

.richText img {
  max-width: 100%;
  height: auto;
}

.richText h1,
.richText h2,
.richText h3,
.richText h4,
.richText h5,
.richText h6 {
  color: var(--color-blue);
  margin-top: 4.8rem;
}

.richText h1 strong,
.richText h2 strong,
.richText h3 strong,
.richText h4 strong,
.richText h5 strong,
.richText h6 strong {
  font-weight: inherit;
}

.richText h1 + *,
.richText h2 + *,
.richText h3 + *,
.richText h4 + *,
.richText h5 + *,
.richText h6 {
  margin-top: 0;
}

.richText h2 {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 2.4rem;
}

.richText h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

@media screen and (min-width: 1200px) {
  .richText h2 {
    font-size: 3.2rem;
  }
  
  .richText h3 {
    font-size: 2.2rem;
  }
}

.richText h4 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.richText h5,
.richText--accordion h2,
.richText--accordion h3,
.richText--accordion h4 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.richText h6,
.richText--accordion h5 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.richText p {
  color: var(--color-gray);
  margin-bottom: 2.4rem;
}

.richText .lead-paragraph,
.richText .lead {
  margin-bottom: 4rem;
}

.richText--accordion .lead {
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
}

.richText ol,
.richText ul {
  margin: 2.4rem 0;
  padding-left: 2rem;
  color: var(--color-gray);
}

.richText ul {
  list-style-type: none !important;
  padding: 0;
}

.richText li {
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

.richText ul li {
  position: relative;
  padding-left: 3.2rem;
}

.richText ul li:before {
  content: '';
  display: block;
  position: absolute;
  top: 1rem;
  left: 0;
  width: 1.6rem;
  height: 0.1rem;
  background-color: var(--color-blue);
}

.richText .table {
  width: 100%;
  max-width: 100%;
  overflow: auto;
  display: block;
  font-family: "Inter";
  margin: 3.2rem 0;
}

.richText table {
  width: 100%;
  table-layout: auto;
  font-family: "Inter";
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-blue);
  border-collapse: collapse;
}

.richText thead {
}

.richText th {
  vertical-align: bottom;
  font-weight: 500;
  padding: 1.6rem 2rem;
}

.richText th:first-of-type {
  position: sticky;
  left: 0;
  background: var(--color-white);
}

.richText tr {
  border-bottom: 1px solid #EAECF0;
}

.richText tr:nth-of-type(even),
.richText tr:nth-of-type(even) td:first-of-type {
  background: var(--color-beige-light);
}

.richText thead + tbody tr:nth-of-type(even) {
  background: transparent;
}

.richText thead + tbody tr:nth-of-type(even) td:first-of-type {
  background-color: var(--color-white);
}

.richText thead + tbody tr:nth-of-type(odd),
.richText thead + tbody tr:nth-of-type(odd) td:first-of-type {
  background: var(--color-beige-light);
}

.richText td {
  vertical-align: top;
  padding: 1.6rem 2rem !important;
  border: none !important;
}

.richText tr td:first-of-type {
  font-weight: 500;
  position: sticky;
  left: 0;
}

.richText blockquote,
.richText blockquote p {
  font-weight: 300;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: var(--color-blue);
  margin: 4.8rem 0;
}

.richText>:first-child {
  margin-top: 0 !important;
}
.richText>:last-child {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 1200px) {
  .richText ol li {
    padding-left: 2.8rem;
  }
  
  .richText ul li {
    padding-left: 4.8rem;
  }
  
  .richText ul li:before {
    width: 2.4rem;
  }
  
  .richText .table {
    margin: 4.8rem 0;
  }
}