.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;
  background-color: #0DBE94;
  color: #fff;
  padding: 2rem 1.5rem;
  border-left: 8px solid #05906F;
}
.entry-content h3 {
  font-size: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.entry-content h3::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  background-color: #0DBE94;
  flex-shrink: 0;
}
.entry-content table {
  width: 100%;
}
.entry-content table tr th, .entry-content table tr td {
  padding: 1rem;
  border: 1px solid #ddd;
  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;
  color: #BE0D62;
}
.entry-content img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.entry-content .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.entry-content .wp-block-columns .wp-block-image img {
  height: auto;
}
.entry-content .post-password-form input[type=password] {
  background-color: #e6ecea;
  padding: 1rem;
}
.entry-content .post-password-form input[type=submit] {
  background-color: #333;
  padding: 1rem;
  color: #fff;
}