/* Force the content container to center just like the Editor */
.entry-content, 
.post-content, 
.site-main > article {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1100px !important; /* This matches the standard Editor width */
    float: none !important;
}

/* Remove any invisible sidebar space pushing things to the right */
.content-area, #primary {
    width: 100% !important;
    margin: 0 auto !important;
    float: none !important;
}

/* Ensure text stays Left-aligned (English) but centered on the screen */
body {
    text-align: center; /* Centers the 'box' */
}

.entry-content > * {
    text-align: left; /* Keeps your actual English text starting from the left */
}
/* Match the Editor's "Box" style for Quotes */
.wp-block-quote {
    background-color: #f8f9fa !important; /* Light grey box background */
    padding: 30px !important;
    border-left: 5px solid #007cba !important; /* Thick accent line on the left */
    margin: 20px auto !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

/* Match the Quote Font */
.wp-block-quote p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    font-style: italic !important;
    color: #1e1e1e !important;
}

/* Match the Citation (Author) Font */
.wp-block-quote cite {
    font-family: inherit !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: #555 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}