/**
* Block Name: zwei_bilder
*/

section.zwei_bilder .image_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
}



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

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

section.zwei_bilder .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.zwei_bilder .img_wrapper:hover .expand {
    background: var(--sand-accent);

}

@media(max-width: 992px) {
    section.zwei_bilder .image_grid {
       column-gap: 30px;
    }

    section.zwei_bilder .img_wrapper .expand {
        transform: scale(0.6);
        top: 5px;
        right: 5px;
    }
}