/* Blog post image positioning */
.post-content img, .prose img {
  max-width: 100%;
  height: auto;
  border: 2px solid var(--border, #3A3A58);
  margin: 1.5em 0;
}

figure.float-left {
  float: left;
  margin: 0 1.5em 1em 0;
  max-width: 45%;
}

figure.float-right {
  float: right;
  margin: 0 0 1em 1.5em;
  max-width: 45%;
}

figure.float-left img,
figure.float-right img {
  width: 100%;
  height: auto;
  border: 2px solid var(--border, #3A3A58);
}

figure figcaption {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  color: var(--dim, #8A8AAC);
  margin-top: 8px;
  line-height: 1.4;
}

/* Clear floats after paragraphs with floated images */
.post-content::after, .prose::after {
  content: "";
  display: table;
  clear: both;
}

/* On mobile, no floats */
@media (max-width: 640px) {
  figure.float-left, figure.float-right {
    float: none;
    max-width: 100%;
    margin: 1em 0;
  }
}
