section.content h1 {
  font-weight: 900;
  font-size: var(--text-4xl);
  color: var(--color-black);

  text-align: center;
} 

section.content > div img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  margin-bottom: 2rem;
}

section.content > div h1,
section.content > div h2,
section.content > div h3,
section.content > div h4,
section.content > div h5,
section.content > div h6 {
  font-weight: 900;
  font-size: var(--text-2xl);
  margin-bottom: 1rem;
}

section.content > div p {
  font-size: var(--text-md);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

section.content > div ol,
section.content > div ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

section.content > div li {
  font-size: var(--text-md);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

section.content > div a {
  color: var(--color-primary);
  text-decoration: none;
}

section.content > div a:hover {
  text-decoration: underline;
}

section.content > div table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

section.content > div th,
section.content > div td {
  padding: 1rem;
  border: 1px solid var(--color-gray);
}

section.content > div th {
  text-align: left;
  font-weight: 900;
  font-size: var(--text-md);
}

section.content > div blockquote {
  padding: 1rem;
  border-left: 5px solid var(--color-primary);
  margin-bottom: 1.5rem;
}

section.content > div blockquote p {
  font-size: var(--text-md);
  line-height: 1.5;
}