/**
 * Listeo Post Layout Fix — styles for the featured image once it has been
 * moved below the title/meta by layout-fix.js.
 *
 * We deliberately use max-height + height:auto (NOT object-fit:cover) so the
 * full image is always visible, never cropped — it just scales down
 * proportionally to fit within the box.
 */
.lplf-repositioned-img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    margin: 20px 0 30px;
    border-radius: 8px;
}

/* Slightly smaller cap on narrow screens so it never dominates the viewport */
@media (max-width: 782px) {
    .lplf-repositioned-img {
        max-height: 320px;
        margin: 16px 0 24px;
    }
}
