.av-sfw {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 12px;
}

.av-sfw-text {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 3em;
    font-weight: bold;
    color: white;

    background: rgba(0, 0, 0, 0.4);

    pointer-events: none;
}

.av-sfw img {
    display: block;
    filter: blur(20px);
}

.av-nsfw {
    filter: blur(0px);
}

.av-nsfw-text {
    position: absolute;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    font-weight: bold;
    color: white;

    background: rgba(0, 0, 0, 0.4);

    pointer-events: none; /* allows clicks through */
}
