/* Hide the sidebar column on single posts /
.single .wp-block-columns > .wp-block-column:last-child {
    display: none !important;
}


/ Expand the main content to full width /
.single .wp-block-columns > .wp-block-column:first-child {
    flex-basis: 100% !important;
    max-width: 90%;
    margin: 0 auto;
}

.single .wp-block-post-title {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}


.single .wp-block-post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


/ Center all in-post images /
.single .wp-block-image {
    text-align: center;
    margin-left: auto;
    margin-right: auto;

}

/ Ensure the image itself centers inside the block */
.single .wp-block-image img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
}