/* WordPress content styles */
.wordpress-content {
  /* Basic typography */
  font-size: 16px;
  line-height: 1.6;
}

/* WordPress image styles */
.wordpress-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
}

/* WordPress blockquote styles */
.wordpress-content blockquote {
  border-left: 4px solid #00b8a9;
  margin: 1.5em 0;
  padding: 0.5em 1em;
  font-style: italic;
}

/* WordPress list styles */
.wordpress-content ul,
.wordpress-content ol {
  margin: 1.5em 0;
  padding-left: 2em;
}

/* WordPress heading styles */
.wordpress-content h1,
.wordpress-content h2,
.wordpress-content h3,
.wordpress-content h4,
.wordpress-content h5,
.wordpress-content h6 {
  margin: 1.5em 0 0.5em;
  line-height: 1.3;
}

/* WordPress link styles */
.wordpress-content a {
  color: #00b8a9;
  text-decoration: none;
}

.wordpress-content a:hover {
  text-decoration: underline;
}

/* WordPress button styles */
.wp-element-button,
.wp-element-button a {
  background-color: #00b8a9;
  color: #ffffff !important;
  padding: 0.5em 1em;
  border-radius: 4px;
  text-decoration: none;
}

.wp-element-button:hover,
.wp-element-button a:hover {
  text-decoration: none !important;
  background-color: #009688;
}

/* WordPress table styles */
.wordpress-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.wordpress-content th,
.wordpress-content td {
  border: 1px solid #e2e8f0;
  padding: 0.5em;
}

/* WordPress code block styles */
.wordpress-content pre {
  background: #f7fafc;
  padding: 1em;
  border-radius: 4px;
  overflow-x: auto;
  margin: 1.5em 0;
}

/* WordPress gallery styles */
.wordpress-content .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1em;
  margin: 1.5em 0;
}

