.entry-content {
  line-height: 2;
  font-size: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.entry-content > * {
  margin: 2rem 0;
}
.entry-content > *:first-child {
  margin-top: 0;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-weight: 700;
  position: relative;
  line-height: 1.5;
}
.entry-content h1,
.entry-content h2 {
  margin-top: 5rem;
}
.entry-content h3,
.entry-content h4 {
  margin-top: 4rem;
}
.entry-content h1 + *,
.entry-content h2 + *,
.entry-content h3 + *,
.entry-content h4 + * {
  margin-top: 2rem;
}
.entry-content h2 {
  font-size: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.entry-content h2::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  background-color: #E83820;
  flex-shrink: 0;
}
.entry-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
.entry-content table {
  width: 100%;
}
.entry-content table tr th, .entry-content table tr td {
  padding: 1rem;
  border: 1px solid #471F1F;
  border-top-width: 0;
}
.entry-content table tr th {
  width: 30%;
}
.entry-content table tr:first-child th, .entry-content table tr:first-child td {
  border-top-width: 1px;
}
.entry-content ul {
  list-style-type: disc;
  margin-left: 2rem;
}
.entry-content ol {
  list-style-type: decimal;
  margin-left: 2rem;
}
.entry-content a {
  text-decoration: underline;
}