/* News Section Styles */
.home-news-restrict {
	display: flex;
	padding: 80px;
}

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

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

.home-news-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-news-content {
	font-family: 'OptimaProRoman', sans-serif;
	font-size: 32px;
	line-height: 48px;
	text-align: center;
	font-weight: 400;
	margin: 0;
	color: #434B5E;
}

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

.home-news {
	display: flex;
	flex-direction: column;
	gap: 24px;
	text-decoration: none;
}

.home-news:hover {
	text-decoration: none;
}

.home-news:hover .home-news-date {
	text-decoration: none;
}

.home-news-image {
	height: 260px;
}

.home-news-image .single-news-image {
	object-fit: cover;
	height: 260px;
	width: 100%;
}

.home-news-inner-content {
	background-color: #FFF;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.home-news-date {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
	color: #434B5E;
	margin: 0;
}

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

.home-news-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-news-button-all:hover {
	text-decoration: none;
	border: 1px solid #1A21C7;
	background-color: #fff;
	color: #1A21C7;
}

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

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

	.home-news-container {
		grid-template-columns: 1fr;
	}

	.home-news {
		flex-direction: row;
		gap: 0;
	}

	.home-news-image {
		width: 50%;
		height: 210px;
	}

	.home-news-image .single-news-image {
		height: 210px;
	}

	.home-news-inner-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		width: 50%;
		padding: 24px;
		gap: 10px;
	}
}

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

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

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

	.home-news-container {
		flex-direction: column;
		gap: 32px;
	}

	.home-news {
		flex-direction: column;
		gap: 24px;
	}

	.home-news-image {
		height: 185px;
		width: 100%;
	}

	.home-news-image .single-news-image {
		height: 185px;
	}

	.home-news-inner-content {
		padding: 0;
		width: 100%;
	}

	.home-news-title {
		font-size: 20px;
		line-height: 28px;
	}

	.home-news-button-all {
		padding: 12px 6px;
		width: 100%;
		text-align: center;
	}
}
