/* Target the figure wrapper created by your render-image.html */
.post-content figure {
    margin: 2rem auto;
    text-align: center;
}

/* Target the actual image */
.post-content figure img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 6px 12px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* Optional: Style the caption if you use them */
.post-content figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.8rem;
    font-style: italic;
}
