/* Block Cover */

/* Defaults */
.wp-block-cover {
    position: relative;
}

/* With flower & lotus stickers */
.wp-block-cover.is-style-flower-sticker::after,
.wp-block-cover.is-style-lotus-sticker::after {
    content: "";
    display: block;
    width: 150px;
    height: 150px;
    position: absolute;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
}

.wp-block-cover.is-style-flower-sticker::after {
    right: 0;
    background-image: url('../images/sticker-white-flower.png');
    transform: translate(0, -25px);
}

.wp-block-cover.is-style-lotus-sticker::after {
    left: 0;
    background-image: url('../images/sticker-white-lotus.svg');
    transform: translate(20px, 0);
}

@media (min-width: 1024px) {
    .wp-block-cover.is-style-flower-sticker::after {
        transform: translate(-10px, -35px);
    }

    .wp-block-cover.is-style-lotus-sticker::after {
        transform: translate(30px, -10px);
    }
}

@media (min-width: 1200px) {
    .wp-block-cover.is-style-flower-sticker::after,
    .wp-block-cover.is-style-lotus-sticker::after {
        width: 180px;
        height: 180px;
    }
}