.zha-section {
	--zha-blue: #0967ce;
	--zha-heading: #073653;
	--zha-text: #11182b;
	--zha-muted-bg: #f6f7fa;
	--zha-line: #e9edf3;
	--zha-card-radius: 22px;
	--zha-image-height: 320px;
	padding: 48px 24px 58px;
	background: #ffffff;
	color: var(--zha-text);
	font-family: inherit;
}

.zha-section * {
	box-sizing: border-box;
}

.zha-container {
	width: min(100%, 1460px);
	margin: 0 auto;
}

.zha-header {
	margin: 0 0 54px;
	text-align: center;
}

.zha-heading {
	margin: 0;
	color: var(--zha-heading);
	font-size: clamp(38px, 5vw, 62px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: 0;
}

.zha-heading-mark {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
}

.zha-heading-mark::before {
	display: block;
	width: 56px;
	height: 6px;
	border-radius: 999px;
	background: var(--zha-blue);
	content: "";
}

.zha-heading-mark::after {
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--zha-blue);
	content: "";
}

.zha-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.zha-columns-1 .zha-grid {
	grid-template-columns: minmax(0, 1fr);
}

.zha-columns-2 .zha-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zha-columns-4 .zha-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.zha-card {
	overflow: hidden;
	min-width: 0;
	border: 1px solid var(--zha-line);
	border-radius: var(--zha-card-radius);
	background: #ffffff;
	box-shadow: 0 16px 30px rgba(5, 24, 44, 0.08);
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.zha-hover-enabled .zha-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 40px rgba(5, 24, 44, 0.12);
}

.zha-image-link {
	display: block;
	background: #ffffff;
	text-decoration: none;
}

.zha-image {
	display: block;
	width: 100%;
	height: var(--zha-image-height);
	object-fit: contain;
	padding: 20px 24px 18px;
	background: #ffffff;
}

.zha-image-placeholder {
	background:
		linear-gradient(90deg, transparent 0 20%, rgba(9, 103, 206, 0.16) 20% 21%, transparent 21% 100%),
		linear-gradient(#ffffff, #ffffff);
}

.zha-content {
	display: flex;
	min-height: 246px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 40px 26px 44px;
	background: var(--zha-muted-bg);
}

.zha-title {
	margin: 0;
	color: var(--zha-text);
	font-size: clamp(21px, 2vw, 25px);
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0;
}

.zha-title a {
	color: inherit;
	text-decoration: none;
}

.zha-title a:hover,
.zha-title a:focus {
	color: var(--zha-blue);
}

.zha-button,
.zha-view-all {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	color: var(--zha-blue);
	font-size: 25px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	text-decoration: none;
}

.zha-button {
	margin-top: 42px;
}

.zha-arrow {
	position: relative;
	display: inline-block;
	width: 12px;
	height: 22px;
	flex: 0 0 12px;
}

.zha-arrow::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 12px;
	height: 12px;
	border-top: 3px solid currentColor;
	border-right: 3px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
	content: "";
}

.zha-button:hover,
.zha-button:focus,
.zha-view-all:hover,
.zha-view-all:focus {
	color: #004f9f;
	text-decoration: none;
}

.zha-view-all-wrap {
	display: flex;
	align-items: center;
	gap: 70px;
	margin-top: 88px;
}

.zha-view-all-wrap::before,
.zha-view-all-wrap::after {
	display: block;
	height: 1px;
	flex: 1 1 auto;
	background: #dfe5ef;
	content: "";
}

.zha-view-all {
	position: relative;
	flex: 0 0 auto;
	font-size: 30px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
}

.zha-view-all::before,
.zha-view-all::after {
	position: absolute;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--zha-blue);
	content: "";
	transform: translateY(-50%);
}

.zha-view-all::before {
	left: -78px;
}

.zha-view-all::after {
	right: -78px;
}

@media (max-width: 1024px) {
	.zha-grid,
	.zha-columns-3 .zha-grid,
	.zha-columns-4 .zha-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.zha-content {
		min-height: 220px;
	}

	.zha-view-all-wrap {
		gap: 40px;
	}

	.zha-view-all {
		font-size: 24px;
	}
}

@media (max-width: 640px) {
	.zha-section {
		padding: 36px 16px 44px;
	}

	.zha-header {
		margin-bottom: 34px;
	}

	.zha-grid,
	.zha-columns-2 .zha-grid,
	.zha-columns-3 .zha-grid,
	.zha-columns-4 .zha-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.zha-image {
		height: min(var(--zha-image-height), 280px);
		padding: 16px;
	}

	.zha-content {
		min-height: 190px;
		padding: 28px 22px 34px;
	}

	.zha-button {
		margin-top: 28px;
		font-size: 22px;
	}

	.zha-view-all-wrap {
		gap: 0;
		justify-content: center;
		margin-top: 52px;
	}

	.zha-view-all-wrap::before,
	.zha-view-all-wrap::after,
	.zha-view-all::before,
	.zha-view-all::after {
		display: none;
	}

	.zha-view-all {
		font-size: 22px;
	}
}
