/* =====================================
   Basic WordPress Content Formatting
   ===================================== */

.wp_format_con {
  font-family: var(--font-primary, Arial, sans-serif);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Headings */
.wp_format_con h1,
.wp_format_con h2,
.wp_format_con h3,
.wp_format_con h4,
.wp_format_con h5,
.wp_format_con h6 {
  font-family: var(--font-primary-bold, Arial, sans-serif);
  margin: 1.5em 0 0.5em;
  line-height: 1.3;
  color: #111;
}

.wp_format_con h1 { font-size: 2em; }
.wp_format_con h2 { font-size: 1.75em; }
.wp_format_con h3 { font-size: 1.5em; }
.wp_format_con h4 { font-size: 1.3em; }
.wp_format_con h5 { font-size: 1.1em; }
.wp_format_con h6 { font-size: 1em; }

/* Paragraphs */
.wp_format_con p {
  margin: 0 0 1.2em;
}

/* Links */
.wp_format_con a {
  color: var(--colour-primary, #703183);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.wp_format_con a:hover {
  color: var(--colour-primarydark, #4b2259);
}

/* Lists */
.wp_format_con ul,
.wp_format_con ol {
  margin: 0 0 1.2em 1.5em;
  padding: 0;
}

.wp_format_con ul {
  list-style-type: disc;
}

.wp_format_con ol {
  list-style-type: decimal;
}

.wp_format_con li {
  margin-bottom: 0.5em;
}

.wp_format_con  b, .wp_format_con  strong{
  font-family: var(--font-primary-bold);
}

/* Blockquote */
.wp_format_con blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 4px solid var(--colour-secondary, #ccc);
  background: #f9f9f9;
  font-style: italic;
  color: #555;
}

/* Images */
.wp_format_con img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em auto;
}

/* Tables */
.wp_format_con table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95em;
}

.wp_format_con th,
.wp_format_con td {
  border: 1px solid #ddd;
  padding: 0.75em;
  text-align: left;
}

.wp_format_con th {
  background: #f0f0f0;
  font-weight: bold;
}


/* =====================================
   WordPress Content Formatting (Extended)
   ===================================== */

.wp_format_con img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  margin: 1em 0;
  border: none;
}

/* Alignment Classes */
.wp_format_con img.alignleft {
  float: left;
  margin: 0.5em 1.5em 1em 0;
}

.wp_format_con img.alignright {
  float: right;
  margin: 0.5em 0 1em 1.5em;
}

.wp_format_con img.aligncenter {
  display: block;
  margin: 1.5em auto;
}

/* Captions */
.wp_format_con .wp-caption {
  max-width: 100%;
  text-align: center;
  margin: 1.5em auto;
}

.wp_format_con .wp-caption img {
  margin: 0;
}

.wp_format_con .wp-caption-text {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5em;
  line-height: 1.4;
}

/* Clearfix for floated images */
.wp_format_con::after {
  content: "";
  display: table;
  clear: both;
}