/*
 * Responsive image
 */
.responsive-image {
	display: flex;
	justify-content: center;
	width: 100%;
	overflow: hidden;
	position: relative
}

.responsive-image img {
	position: absolute;
	object-fit: cover
}

.responsive-image img:last-of-type {
	display: block;
	height: 100%;
}

.responsive-image img:not(:last-of-type):first-of-type {
	filter: blur(5px) brightness(75%);
	width: 105%;
	height: 105%;
	object-fit: cover
}

.responsive-image picture {
	display: flex;
	height: 100%;
	width: 100%;
	justify-content: center;
	overflow: hidden;
	position: absolute;
}
