.cms-rte > * {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
  max-width: 785px;
}

.cms-rte :first-child {
  margin-top: 0;
}

.cms-rte > div {
  width: 100%;
}

.cms-rte hr {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

.cms-rte p {
  color: var(--color-std-gray-600);
  padding-bottom: 18px;
  font-size: 0.875rem;
  font-weight: 400;
}

.cms-rte p > img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 785px;
}

.cms-rte h1 {
  font-size: 2.75rem;
}
.cms-rte h2 {
  font-size: 2.25rem;
}
.cms-rte h3 {
  font-size: 1.75rem;
}
.cms-rte h4 {
  font-size: 1.25rem;
}
.cms-rte h1,
.cms-rte h2,
.cms-rte h3,
.cms-rte h4,
.cms-rte h5,
.cms-rte h6 {
  font-weight: bold;
  line-height: 1.3;
}
.cms-rte sub,
.cms-rte sup {
  font-size: 75%;
}

.cms-rte ul {
  color: var(--color-std-gray-600);
  list-style-type: disc;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-size: 0.875rem;
}

.cms-rte ol {
  color: var(--color-std-gray-600);
  display: block;
  list-style-type: decimal;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-size: 0.875rem;
}
.cms-rte ul li {
  display: list-item;
  text-align: -webkit-match-parent;
  list-style-type: disc;
}

.cms-rte a,
.cms-rte a:link,
.cms-rte a:visited {
  color: var(--color-std-red-300);
}
.cms-rte a:hover {
  text-decoration: underline;
}

.cms-rte img {
  display: block;
  max-width: 100%;
}

.cms-rte .youtube-embed-wrapper {
  max-width: 100%;
}

.cms-rte blockquote {
  font-size: 0.875rem;
  border-left: 4px solid var(--color-std-gray-300);
  padding-left: 0.75rem;
  width: 100%;
}
.cms-rte blockquote p:last-child {
  padding-bottom: 0;
}

.cms-rte .rte-image-container {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}
.cms-rte .rte-image-container.rte-img-align-left {
  justify-content: flex-start;
}
.cms-rte .rte-image-container.rte-img-align-center {
  justify-content: center;
}
.cms-rte .rte-image-container.rte-img-align-right {
  justify-content: flex-end;
}

.cms-rte .rte-layout-columns {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .cms-rte .rte-layout-columns[data-columns='2'] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cms-rte .rte-layout-columns[data-columns='3'] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.cms-rte div[data-type='toc']:empty {
  display: none;
}
.cms-rte .rte-toc-node .rte-toc-node-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.cms-rte .rte-toc-node .rte-toc-node-item {
  list-style: none;
  font-size: 16px;
}
.cms-rte .rte-toc-node .rte-toc-node-item.level-0 {
  padding-left: 0;
}
.cms-rte .rte-toc-node .rte-toc-node-item.level-1 {
  padding-left: 16px;
}
.cms-rte .rte-toc-node .rte-toc-node-item.level-2 {
  padding-left: 32px;
}
.cms-rte .rte-toc-node .rte-toc-node-item.level-3 {
  padding-left: 48px;
}
.cms-rte .rte-toc-node .rte-toc-node-item.level-4 {
  padding-left: 64px;
}
.cms-rte .rte-toc-node .rte-toc-node-item.level-5 {
  padding-left: 80px;
}

.cms-rte table {
  color: var(--color-std-gray-600);
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}
.cms-rte table td,
.cms-rte table th {
  box-sizing: border-box;
  min-width: 1em;
  padding: 6px 8px;
  position: relative;
  vertical-align: top;
}
.cms-rte table td > *,
.cms-rte table th > * {
  margin-bottom: 0;
}
.cms-rte table th {
  font-weight: bold;
  text-align: left;
}
.cms-rte .tableWrapper {
  margin: 1.5rem 0;
  overflow-x: auto;
}
