/* Products Section Styles */
.home-product-restrict {
	display: flex;
	padding: 0 80px 80px;
}

.home-product-list-container {
	display: flex;
	flex-direction: column;
	gap: 56px;
	width: 100%;
	align-items: center;
}

.home-product-list-header {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 1060px;
}

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

.home-product-content {
	font-family: 'OptimaProRoman', sans-serif;
	font-size: 32px;
	line-height: 48px;
	text-align: center;
	font-weight: 400;
	margin: 0;
	color: #434B5E;
}

.home-products-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 32px;
	row-gap: 32px;
	width: 100%;
}

.home-product {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.home-product-image {
	background: #E9F1FB;
	min-height: 240px;
	max-height: 240px;
}

.home-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-product-inner-content {
	background-color: #F2F7FD;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 22px;
	height: 100%;
	justify-content: space-between;
}

.home-product-title {
	font-family: 'OptimaProRoman', sans-serif;
	font-size: 26px;
	line-height: 32px;
	font-weight: 400;
	color: #434B5E;
	margin: 0;
}

.home-product-button {
	line-height: 0;
	cursor: pointer;
}

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

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

.home-product-link {
	text-decoration: none;
}

.home-product-link:hover {
	text-decoration: none;
}

.home-product-link:hover h3 {
	text-decoration: none;
}

.home-product-link:hover .home-product-inner-content {
	text-decoration: none;
	background-color: #EBF3FD;
}

.home-product-link:hover .home-product-title {
	text-decoration: none;
	color: #1A21C7;
}

.home-product-link:hover svg {
	text-decoration: none;
	fill: #1A21C7;
	stroke: #fff;
}

/* Tablet Styles */
@media screen and (max-width: 1280px) {
	.home-product-restrict {
		padding: 80px 40px;
	}

	.home-product-list-container {
		gap: 40px;
	}

	.home-products-container {
		grid-template-columns: 1fr;
		row-gap: 16px;
	}

	.home-product {
		flex-direction: row;
	}

	.home-product-image {
		width: 50%;
	}

	.home-product-inner-content {
		width: 50%;
		padding: 24px;
		gap: 48px;
	}
}

/* Mobile Styles */
@media screen and (max-width: 744px) {
	.home-product-restrict {
		padding: 32px 16px;
	}

	.home-product-content {
		font-size: 26px;
		line-height: 40px;
	}

	.home-product-list-container {
		gap: 24px;
	}

	.home-product {
		flex-direction: column;
	}

	.home-product-image {
		width: 100%;
	}

	.home-product-inner-content {
		width: 100%;
		padding: 16px;
		gap: 24px;
	}

	.home-product-title {
		font-size: 22px;
		line-height: 32px;
	}
}
