.hero-logo {
    position: relative;
}
.hero-logo::after {
    content: "";
    background-image: url(/wp-content/themes/arbitra/assets/images/ARBITRA_logo_gray.webp);
    background-size: cover;
    width: 100%;
    aspect-ratio: 19/18.75;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -5;
    opacity: 0.25;
}
@media screen and (max-width: 782px) {
    .hero-logo::after {
        content: unset;
    }
}
.wp-block-image.is-style-rounded img {
    border-radius: 0.5rem !important;
}

.obsah-clanku .wp-block-image.alignwide {
    margin: var(--wp--preset--spacing--48-24) 0 !important;
}

.wp-block-image > figcaption {
    text-align: center;
    font-size: var(--wp--preset--font-size--extra-small);
    font-style: italic;
}

/* gradient filter image style*/
.wp-block-image.is-style-filter {
    position: relative;
    overflow: hidden;
   border-radius: 1rem;
}

.wp-block-image.is-style-filter::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #F47C57E0 32%, #F79A3A 100%);
    z-index: 15;
    mix-blend-mode: color;
}

/* caption popover style */
.wp-block-image.image-popover {
    position: relative;

    & figcaption {
        position: absolute;
        background-color: var(--wp--preset--color--background);
        padding: 1rem;
        border-radius: 0.5rem;
        bottom: -30px;
        width: 80%;
        right: -12px;
        box-shadow: 0 16px 32px -4px #3853701F;
        font-style: normal;
    }
}