/*
========================================
Gutenberg Image Block
========================================
*/


.wp-block-image img {

    border-radius:
    var(--radius-md);

    height:
    auto;

}



/*
Image Captions
*/


.wp-block-image figcaption {

    color:
    var(--medipro-muted);

    font-size:
    .875rem;

    margin-top:
    10px;

    text-align:
    center;

}



/*
Rounded Image Style
*/


.is-style-rounded img {

    border-radius:
    50%;

}



/*
Healthcare Card Images
*/


.wp-block-image {

    margin-bottom:
    var(--space-lg);

}



/*
Full Width Images
*/


.wp-block-image.alignwide img,
.wp-block-image.alignfull img {

    width:
    100%;

}



/*
Hover Effect
*/


.wp-block-image img {

    transition:
    transform .3s ease;

}


.wp-block-image:hover img {

    transform:
    scale(1.02);

}