.drm-imagetext__container{
	width:100%;
}
.drm-imagetext__image{
	display: block;
	position: relative;
	width:100%;
	height:0;
	margin-bottom:0.5rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.drm-imagetext__image.square{
	padding-bottom: 100%;
}
.drm-imagetext__image.sixteen-by-nine{
	padding-bottom: 56.25%;
}
.drm-imagetext__image img{
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.drm-imagetext__headline{
	margin-bottom:0.5rem;
}
.drm-imagetext__text{
	margin-top:0.5rem;
	margin-bottom:0.5rem;
}
.drm-imagetext__button{
	position: relative;
	text-decoration: none !important;
	overflow: hidden;
}
.drm-imagetext__button:after,
a.drm-imagetext__image:after{
	content:'';
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(255,255,255,0.1);
	opacity:0;
	transition: opacity 0.15s ease-out;
}
.drm-imagetext__button:hover:after,
a.drm-imagetext__image:hover:after{
	opacity:1;
}