/* Hover Navigation Cards – 1d3969ad */

.hnc-1d3969ad-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.hnc-1d3969ad-wrapper.hnc-layout-horizontal {
	flex-direction: row;
}

.hnc-1d3969ad-card {
	position: relative;
	display: flex;
	align-items: stretch;
	overflow: hidden;
	cursor: pointer;
	transition: background-color 0.4s ease, box-shadow 0.4s ease;
	text-decoration: none;
	color: inherit;
}

.hnc-1d3969ad-card:focus {
	outline: 2px solid #E94560;
	outline-offset: -2px;
}

/* Indicator bar on the left */
.hnc-1d3969ad-indicator {
	display: block;
	flex-shrink: 0;
	width: 4px;
	background-color: transparent;
	transition: background-color 0.35s ease;
	border-radius: 2px;
}

.hnc-1d3969ad-card.hnc-active .hnc-1d3969ad-indicator {
	background-color: #E94560;
}

/* Inner content */
.hnc-1d3969ad-card-inner {
	padding-left: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hnc-1d3969ad-header {
	display: flex;
	align-items: center;
	gap: 14px;
}

.hnc-1d3969ad-number {
	font-size: 14px;
	font-weight: 600;
	opacity: 0.7;
	transition: color 0.35s ease;
}

.hnc-1d3969ad-title {
	margin: 0;
	padding: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	transition: color 0.35s ease;
}

/* Description – hidden by default, revealed on active */
.hnc-1d3969ad-desc {
	margin: 12px 0 0;
	padding: 0;
	font-size: 15px;
	line-height: 1.55;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.35s ease;
}

.hnc-1d3969ad-card.hnc-active .hnc-1d3969ad-desc {
	max-height: 200px;
	opacity: 1;
}

.hnc-1d3969ad-card:not(.hnc-active) .hnc-1d3969ad-desc {
	max-height: 0;
	opacity: 0;
	margin-top: 0;
}

/* Horizontal layout tweaks */
.hnc-1d3969ad-wrapper.hnc-layout-horizontal .hnc-1d3969ad-card {
	flex: 1;
	flex-direction: column;
}

.hnc-1d3969ad-wrapper.hnc-layout-horizontal .hnc-1d3969ad-indicator {
	width: 100%;
	height: 4px;
	border-radius: 2px;
}

.hnc-1d3969ad-wrapper.hnc-layout-horizontal .hnc-1d3969ad-card-inner {
	padding-left: 0;
	padding-top: 12px;
}

/* Responsive */
@media (max-width: 767px) {
	.hnc-1d3969ad-wrapper.hnc-layout-horizontal {
		flex-direction: column;
	}

	.hnc-1d3969ad-wrapper.hnc-layout-horizontal .hnc-1d3969ad-card {
		flex-direction: row;
	}

	.hnc-1d3969ad-wrapper.hnc-layout-horizontal .hnc-1d3969ad-indicator {
		width: 4px;
		height: auto;
	}

	.hnc-1d3969ad-wrapper.hnc-layout-horizontal .hnc-1d3969ad-card-inner {
		padding-left: 16px;
		padding-top: 0;
	}
}
