/* Rich Text / Article Content Styling */
.richtext-content {
  color: #203351; /* efs-dark-blue */
  line-height: 1.75;
}

.richtext-content h2 {
  font-size: 2rem; /* 32px */
  font-weight: 700;
  line-height: 1.25;
  margin-top: 2em;
  margin-bottom: 0.75em;
  color: #203351;
}

.richtext-content h3 {
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
  line-height: 1.35;
  margin-top: 1.75em;
  margin-bottom: 0.625em;
  color: #203351;
}

.richtext-content h4 {
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  line-height: 1.4;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #17428B; /* efs-blue */
}

.richtext-content p {
  margin-bottom: 1.25em;
  font-size: 1.125rem; /* 18px */
}

.richtext-content strong {
  font-weight: 600;
  color: #203351;
}

.richtext-content em {
  font-style: italic;
}

.richtext-content a {
  color: #17428B; /* efs-blue */
  text-decoration: underline;
  font-weight: 500;
}

.richtext-content a:hover {
  color: #D24E38; /* efs-brand-red */
}

.richtext-content ul,
.richtext-content ol {
  margin-left: 1.5em;
  margin-bottom: 1.25em;
}

.richtext-content ul {
  list-style-type: disc;
}

.richtext-content ol {
  list-style-type: decimal;
}

.richtext-content li {
  margin-bottom: 0.5em;
  padding-left: 0.375em;
}

.richtext-content li > p {
  margin-bottom: 0.5em;
}

.richtext-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2em auto;
  display: block;
}

.richtext-content br {
  content: "";
  display: block;
  margin-top: 0.75em;
}

