.wr-ihc{
	display: flex;
	width: 100%;
	align-items: stretch;
	background: #fff;
	--wr-ihc-btn-border-color: #f05a8a;
	--wr-ihc-btn-hover-bg: #ffffff;
	height: 100%;
}

.wr-ihc__media{
	position: relative;
	flex: 0 0 50%;
	max-width: 50%;
	width: 50%;
	overflow: hidden;
	background: #fff;
	height: var(--wr-ihc-image-height, auto) !important;
	min-height: var(--wr-ihc-image-height, 0) !important;
	align-self: unset !important;
}

.wr-ihc--col .wr-ihc__media,
.wr-ihc--col-reverse .wr-ihc__media{
	flex: 0 0 auto;
	max-width: 100%;
	width: 100%;
}

.wr-ihc__bg{
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 1;
	transition: opacity 220ms cubic-bezier(.2,.8,.2,1);
}

.wr-ihc__bg--hover{
	opacity: 0;
}

.wr-ihc:hover .wr-ihc__bg--main{
	opacity: 0;
}

.wr-ihc:hover .wr-ihc__bg--hover{
	opacity: 1;
}

.wr-ihc__content{
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 14px;
	padding: 24px;
	min-height: 100%;
}

.wr-ihc__title{
	margin: 0;
}

.wr-ihc__divider{
	width: 120px;
	height: 1px;
	background: #111;
}

.wr-ihc__text{
	margin: 0;
	max-width: 100%;
}

.wr-ihc__button{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	border-style: solid;
	border-width: 2px;
	border-color: transparent;
	background: #f05a8a;
	color: #fff;
	padding: 12px 24px;
	transition: color 220ms cubic-bezier(.2,.8,.2,1), background-color 220ms cubic-bezier(.2,.8,.2,1), border-color 220ms cubic-bezier(.2,.8,.2,1);
}

.wr-ihc:hover .wr-ihc__button,
.wr-ihc__button:hover,
.wr-ihc__button:focus-visible{
	background-color: var(--wr-ihc-btn-hover-bg, #ffffff) !important;
	border-color: var(--wr-ihc-btn-border-color, #f05a8a) !important;
	color: var(--wr-ihc-btn-border-color, #f05a8a) !important;
}

@media (max-width: 1280px){
	.wr-ihc{
		flex-direction: column;
		height: auto !important;
		min-height: 0;
	}

	.wr-ihc__media{
		flex: 0 0 auto;
		max-width: 100%;
		width: 100%;
		align-self: auto !important;
	}

	.wr-ihc__content{
		min-height: 0;
		width: 100%;
		box-sizing: border-box;
	}

	.wr-ihc__title,
	.wr-ihc__text{
		width: 100%;
		overflow-wrap: anywhere;
		word-break: break-word;
	}
}
