/* In Progress Marker Badge Style */
.inprogress-badge {
    display: inline-block; /* Or block if needed */
    position: absolute;
    bottom: 8px; /* Adjust as needed */
    right: 8px; /* Adjust as needed */
    padding: 2px 6px;
    font-size: 0.7em; /* Small font */
    font-weight: bold;
    color: #fff; /* White text */
    background-color: #ff9800; /* Orange background */
    border-radius: 4px;
    z-index: 5; /* Ensure it's above the image */
    line-height: 1.2;
    text-align: center;
}

/* Ensure the container holding the badge and image allows absolute positioning */
/* Adjust the selector based on your theme's structure for the image/thumbnail container */
/* Example selectors: */
.aio-list .item .thumbnail a figure, 
.cover-aspect,
.post-thumbnail {
    position: relative; /* Needed for absolute positioning of child badge */
}