@mixin image-cover($padding-bottom) {
    padding-bottom: $padding-bottom;
    position: relative;
    background-size: cover;

    > img {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	object-fit: cover;
	font-family: "object-fit: cover";
    }
}
