.confluence-content {
  padding: 1rem;
}

/* Headings */
.confluence-content h1 {
  margin: 0.5rem 0;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(2rem, 6vw, 4rem);   /* scales between mobile and desktop */
  line-height: 1.1;
}

/* Paragraph text */
.confluence-content p {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 18pt;
  line-height: 1.5;
  margin: 0.5rem 0;
  color: #000; /* adjust if you need lighter text on parchment */
}

/* Image */
.confluence-content .image {
  display: block;
  margin: 1rem auto;
  width: 35%;
  max-width: 300px;
  height: auto;
}

img.image-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.image-left {
  float: left;
  margin-right: 1em;
}

img.image-right {
  float: right;
  margin-left: 1em;
}

/* Optional: tighter mobile spacing */
@media (max-width: 600px) {
  .confluence-content {
    padding: 0.5rem;
  }
  .confluence-content .image {
    width: 60%;
  }
}
