/* Knowledge Hub Section Styles */
.knowledge-restrict {
	border: 14px solid #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #1A21C7;
	padding: 146px 80px;
	gap: 56px;
}

.knowledge-header {
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: center;
	max-width: 1060px;
}

.knowledge-subtitle {
	font-family: 'OptimaProBold', sans-serif;
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #B0CDF7;
	margin: 0;
}

.knowledge-intro {
	font-family: 'OptimaProRoman', sans-serif;
	font-size: 32px;
	line-height: 48px;
	font-weight: 400;
	color: #fff;
	margin: 0;
}

.knowledge-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	width: 100%;
}

.knowledge-element {
	background-color: #F2F7FD;
	border: 1px solid #F2F7FD;
	padding: 12px;
	display: flex;
	flex-direction: row;
	gap: 16px;
	align-items: center;
	text-decoration: none;
	line-height: 0;
}

.knowledge-element:hover {
	background-color: #FFF;
	border: 1px solid #FFF;
	text-decoration: none;
}

.knowledge-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.knowledge-name {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	line-height: 21px;
	font-weight: 700;
	color: #434B5E;
	margin: 0;
	text-decoration: none;
}

.knowledge-articles {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
	color: #434B5E;
	margin: 0;
	text-decoration: none;
}

.knowledge-icon {
	line-height: 0;
}

.knowledge-icon svg {
	width: 60px;
	height: 60px;
}

.knowledge-button {
	font-family: 'Lato', sans-serif;
	background-color: #EBF3FD;
	color: #1A21C7;
	padding: 12px 32px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	border: 1px solid #fff;
	cursor: pointer;
	width: fit-content;
	text-decoration: none;
}

.knowledge-button:hover {
	text-decoration: none;
	border: 1px solid #fff;
	background-color: #1A21C7;
	color: #fff;
}

/* Tablet Styles */
@media screen and (max-width: 1280px) {
	.knowledge-restrict {
		padding: 66px 26px;
		gap: 40px;
	}

	.knowledge-element {
		flex-direction: column;
	}

	.knowledge-content {
		gap: 16px;
	}

	.knowledge-info {
		text-align: center;
		justify-content: center;
	}

	.knowledge-icon {
		width: 60px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.knowledge-icon svg {
		width: 32px;
		height: auto;
	}
}

/* Mobile Styles */
@media screen and (max-width: 744px) {
	.knowledge-restrict {
		padding: 26px 10px;
		gap: 24px;
		border: 6px solid #fff;
	}

	.knowledge-intro {
		font-size: 26px;
		line-height: 40px;
	}

	.knowledge-element {
		flex-direction: row;
	}

	.knowledge-content {
		gap: 8px;
		grid-template-columns: 1fr;
	}

	.knowledge-info {
		text-align: left;
		justify-content: left;
	}

	.knowledge-icon {
		min-width: 60px;
		height: 60px;
	}

	.knowledge-button {
		padding: 12px 4px;
		width: 100%;
		text-align: center;
	}
	.knowledge-icon svg {
		width: 60px;
		height: auto;
	}
}
