.post_body_wrap {
    position: relative;
	border-radius: 12px;
	overflow: hidden; 
}

.post_body_wrap.has-content-warning {
    position: relative;
    cursor: pointer;
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
    overflow: hidden !important;
}

.post_body_wrap.has-content-warning .post_body {
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;

    filter: blur(12px);
    user-select: none;
    pointer-events: none;
    transition: filter 0.2s ease;
}

.post_body_wrap.has-content-warning .post_body > *:first-child {
    margin-top: 0 !important;
}

.post_body_wrap.has-content-warning .post_body > *:last-child {
    margin-bottom: 0 !important;
}

.post_body_wrap .cw-overlay {
    display: none;
}

.post_body_wrap.has-content-warning .cw-overlay {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
    overflow: hidden !important;

    align-items: center;        /* ← vertical center */
    justify-content: center;    /* ← horizontal center */

    text-align: center;
    padding: 12px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.35);
    z-index: 5;
}

.cw-message {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 14px;
    background: rgba(20, 20, 20, 0.85);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
    text-align: center;
}

.post_body_wrap.revealed {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}

.post_body_wrap.revealed .post_body {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    filter: blur(0);
    pointer-events: auto;
    user-select: auto;
}

.post_body_wrap.revealed .cw-overlay {
    display: none;
}
		