/* Blog frontend styles (listing + single post) */

.prose {
  line-height: 1.65;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Float helpers for images inserted from TinyMCE */
.prose img.float-left {
  float: left;
  margin: 0 16px 12px 0;
  max-width: min(420px, 50%);
}

.prose img.float-right {
  float: right;
  margin: 0 0 12px 16px;
  max-width: min(420px, 50%);
}

/* Clear floats at the end of content blocks */
.prose::after {
  content: "";
  display: block;
  clear: both;
}

/* Optional: nicer captions if you ever use <figure><figcaption> */
.prose figcaption {
  font-size: 0.9em;
  opacity: 0.75;
  margin-top: 6px;
}
