.wp-block-post-content{
    .swiper-container{
        position: relative;
        overflow: hidden;
        .swiper-button-prev, 
        .swiper-button-next{
            min-width: 40px;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--wp--preset--color--secondary);
            border-radius: 50%;
            &:after{
                font-size: 14px;
                color: var(--wp--preset--color--text-on-secondary);
            }
            &:hover{
                background-color: var(--wp--preset--color--hover-secondary);
            }
        }
        .swiper-pagination{
            height: 40px;
            .swiper-pagination-bullet{
                background-color: #fff;
                &.swiper-pagination-bullet-active{
                    background-color: var(--wp--preset--color--hover-secondary) !important;
                }
            }
        }
    }
    figure.wp-block-image{
        img{
            width: 100%;
            height: auto;
        }
        figcaption{
            font-style: italic;
            border-left: 4px solid var(--wp--preset--color--secondary);
            padding-left: 10px;
            font-size: var(--wp--preset--font-size--small) !important;
            margin-top: 5px;
        }
    }

    a:not(:has(img)){
        color: var(--wp--preset--color--secondary);
        &:hover{
            border-bottom: 3px dotted var(--wp--preset--color--secondary);
        }
    }
    a:has(img):not(.swiper-container a):not(.bc-author-box a){
        display: block;
        position: relative;
        &:before{
            content: "";
            position: absolute;
            z-index: 1;
            -webkit-mask: url('data:image/svg+xml,%3Csvg width="36" height="36" viewBox="0 0 36 36" fill="currentColor" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M26.37 22h-12V10h12zm-1-2h-10l2.7-3.5 1.55 2 2.3-3z" /%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M18 0C8.059 0 0 8.059 0 18s8.059 18 18 18 18-8.059 18-18S27.941 0 18 0m-5.042 23.413q.587.587 1.412.587h12q.825 0 1.413-.587.587-.588.587-1.413V10q0-.825-.587-1.412A1.93 1.93 0 0 0 26.37 8h-12q-.824 0-1.412.588A1.93 1.93 0 0 0 12.37 10v12q0 .824.588 1.413m-4 4Q9.545 28 10.37 28h14v-2h-14V12h-2v14q0 .824.588 1.413" /%3E%3C/svg%3E');
            width: 48px;
            height: 48px;
            background-color: var(--wp--preset--color--neutral);
            -webkit-mask-position: center;
            mask-position: center;
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
            -webkit-mask-size: contain;
            mask-size: contain;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 1;
        }
    }
}
