/**
 * Post Content Centering for Poesie
 * CSS for centering post elements in the "poesie" category
 */

/* Center post title */
.wp-block-post-title {
    text-align: center !important;
}

/* Center post metadata (date, author, category) */
.wp-block-post-title + div {
    text-align: center !important;
}

/* Target the metadata container specifically */
.wp-block-template-part .wp-block-group.is-content-justification-left {
    justify-content: center !important;
}

/* Ensure post content is centered */
.entry-content {
    text-align: center !important;
}
