.wp_content {
  line-height: 1.8;
  font-size: 1em;
  color: #222;
  word-break: break-word;
}

.wp_content h1,
.wp_content h2,
.wp_content h3,
.wp_content h4,
.wp_content h5,
.wp_content h6 {
  margin: 0 0 1em;
  font-weight: bold;
  line-height: 1.3;
}

.wp_content h1 {
  font-size: 2em;
}

.wp_content h2 {
  font-size: 1.7em;
}

.wp_content h3 {
  position: relative;
  font-size: 1.4em;
}

.wp_content h3:before,
.wp_content h3:after {
  content: "";
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  height: 5px;
  border-radius: 3px;
}

.wp_content h3:before {
  width: 100%;
  background: var(--theme-color);
  z-index: -1;
}

.wp_content h3:after {
  width: 10em;
  background: var(--theme-color2);
  z-index: -1;
}

.wp_content h4 {
  font-size: 1.2em;
}

.wp_content h5 {
  font-size: 1em;
}

.wp_content h6 {
  font-size: 0.95em;
}

.wp_content p {
  margin: 0;
}

.wp_content p:has(+h3) {
  margin: 1em 0 5em;
}

.wp_content ul,
.wp_content ol {
  margin: 1em 0 1em 2em;
  padding: 0;
}

.wp_content li {
  margin-bottom: 0.5em;
}

.wp_content a {
  color: var(--theme-color, #e50081);
  text-decoration: underline;
  transition: color 0.2s;
}

.wp_content a:hover {
  color: #333;
}

.wp_content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em auto;
}

.wp_content blockquote {
  border-left: 4px solid var(--theme-color, #e50081);
  background: #f9f9f9;
  margin: 1em 0;
  padding: 0.8em 1em;
  color: #555;
  font-style: italic;
}

.wp_content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 1em;
}

.wp_content th,
.wp_content td {
  border: 1px solid #ccc;
  padding: 0.5em 1em;
}

.wp_content th {
  background: #f0f0f0;
  font-weight: bold;
}

.wp_content strong {
  font-weight: bold;
  color: var(--theme-color, #e50081);
}

.wp_content em {
  font-style: italic;
}

.wp_content pre,
.wp_content code {
  background: #f4f4f4;
  border-radius: 3px;
  padding: 0.2em 0.5em;
  font-family: 'Consolas', 'Menlo', 'Monaco', monospace;
  font-size: 0.95em;
}