/**
* Block Name: bild
*/

section.bild .img_wrapper img {
    border-radius: 30px;
}

section.bild .img_wrapper {
    position: relative;
    cursor: pointer;
}

section.bild .img_wrapper .expand {
    border-radius: 100px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9;
    background: white;
    border: 1px solid var(--green);
    transition: background 300ms ease-in-out;
}

section.bild .img_wrapper:hover .expand {
    background: var(--sand-accent);
}


@media(max-width: 992px) {
    section.bild .img_wrapper .expand {
        transform: scale(0.6);
        top: 5px;
        right: 5px;
    }
}