/* The media plugin also renders outside #microblog-container (the composer).
   Keep its image and reveal UI self-contained in all server/AJAX-rendered feeds. */
body.voicepa-product-ui .vp-mb-image {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 10px 0 0;
    box-sizing: border-box;
}
body.voicepa-product-ui .vp-mb-image .vp-mb-image__button {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 1px solid #f1d9df;
    border-radius: 14px;
    background: #fffdf4;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
}
body.voicepa-product-ui .vp-mb-image .vp-mb-image__img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: var(--vp-mb-image-max-pc, 520px);
    object-fit: var(--vp-mb-image-fit, contain);
    background: #fff;
}
body.voicepa-product-ui .vp-mb-image--sensitive:not(.is-revealed) .vp-mb-image__img {
    filter: blur(18px) saturate(.85);
    transform: scale(1.03);
}
body.voicepa-product-ui .vp-mb-image .vp-mb-image__sensitive-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 18px;
    box-sizing: border-box;
    color: #fff;
    background: rgba(0, 0, 0, .42);
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}
body.voicepa-product-ui .vp-mb-image.is-revealed .vp-mb-image__sensitive-overlay {
    display: none;
}
body.voicepa-product-ui .vp-mb-image .vp-mb-image__sensitive-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}
body.voicepa-product-ui .vp-mb-image .vp-mb-image__sensitive-icon svg {
    display: block;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    fill: currentColor;
}
@media (max-width: 900px) {
    body.voicepa-product-ui .vp-mb-image .vp-mb-image__img {
        max-height: var(--vp-mb-image-max-sp, 420px);
    }
}
