/* ── Image Element Widget ── */
.blaek-ie {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	min-height: 560px;
}


/* Background image layer */
.blaek-ie__background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 0;
}

/* Optional overlay on top of background image */
.blaek-ie__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	pointer-events: none;
}

/* Content wrapper - controls horizontal & vertical positioning */
.blaek-ie__content-wrap {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: stretch;
	width: 100%;
	padding: 0;
	box-sizing: border-box;
}

/* Horizontal position */
.blaek-ie--pos-left .blaek-ie__content-wrap {
	justify-content: flex-start;
}

.blaek-ie--pos-center .blaek-ie__content-wrap {
	justify-content: center;
}

.blaek-ie--pos-right .blaek-ie__content-wrap {
	justify-content: flex-end;
}


/* Content box */
.blaek-ie__content-box {
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	padding: 80px 60px;
	width: 65%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

/* Content box inner */
.blaek-ie__content-box-inner {
	width: 100%;
	max-width: 600px;
}

/* Title */
.blaek-ie__title {
	font-size: 24px;
	font-weight: 700;
	color: #14466E;
	margin: 0 0 20px;
	line-height: 1.3;
}

/* Subtitle */
.blaek-ie__subtitle {
	font-size: 18px;
	font-weight: 700;
	color: #14466E;
	margin: 0 0 16px;
	line-height: 1.4;
}

/* Description */
.blaek-ie__description {
	margin: 0;
}

/* Button / CTA link */
.blaek-ie__button {
	margin-top: 30px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: #C8322B;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.2s ease;
}

.blaek-ie__button:hover {
	color: #a02822;
}

.blaek-ie__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.blaek-ie__button-icon svg {
	fill: currentColor;
}

.blaek-ie__button-text {
	position: relative;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.blaek-ie__content-box {
		width: 100%;
		padding: 60px 40px;
	}

	.blaek-ie__description {
		display: none;
	}
}

@media (max-width: 767px) {
	.blaek-ie__content-box {
		max-width: 100%;
		padding: 24px;
	}

	.blaek-ie__title {
		font-size: 20px;
	}

	.blaek-ie__subtitle {
		font-size: 16px;
	}
}