/* Hover Image Box — 10897 */

.hib-10897-box {
	position: relative;
	width: 100%;
	height: 400px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	cursor: pointer;
}

.hib-10897-overlay {
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 26, 0.35);
	transition: background 400ms ease;
}

.hib-10897-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

/* Title — visible by default, hides on hover */
.hib-10897-title {
	margin: 0;
	padding: 0 16px;
	color: #ffffff;
	text-align: center;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 400ms ease, transform 400ms ease;
}

/* Description — hidden by default, appears on hover */
.hib-10897-description {
	margin: 0;
	padding: 0 24px;
	color: #ffffff;
	text-align: center;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 400ms ease, transform 400ms ease;
	position: absolute;
}

/* Hover state */
.hib-10897-box:hover .hib-10897-title {
	opacity: 0;
	transform: translateY(-12px);
}

.hib-10897-box:hover .hib-10897-description {
	opacity: 1;
	transform: translateY(0);
}
