.news-section {
	padding: 20px 0;
	max-width: 1200px;
	margin: 0 auto;
}
.news-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #005ca7;
}
.news-title {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	color: #005ca7;
}
.news-more {
	font-size: 14px;
	color: #005ca7;
	text-decoration: none;
	transition: all 0.3s ease;
}
.news-more:hover {
	color: #0078d4;
	transform: translateX(3px);
}
.news-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.news-item {
	display: flex;
	gap: 15px;
	padding: 15px;
	background: #fff;
	border-radius: 8px;
	border: 1px solid #e8ecf4;
	transition: all 0.3s ease;
}
.news-item:hover {
	background: #f8fbff;
	border-color: #005ca7;
	transform: translateX(5px);
}
.news-date {
	min-width: 90px;
	height: fit-content;
	background: #005ca7;
	color: #fff;
	padding: 10px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
	flex-shrink: 0;
}
.news-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.news-heading {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	line-height: 1.4;
}
.news-heading a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}
.news-heading a:hover {
	color: #005ca7;
}
.news-summary {
	margin: 0;
	font-size: 13px;
	color: #666;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media (max-width: 768px) {
	.news-section {
		padding: 15px 0;
		max-width: 100%;
	}
	.news-header {
		margin-bottom: 15px;
		padding-bottom: 12px;
	}
	.news-title {
		font-size: 18px;
	}
	.news-more {
		font-size: 13px;
	}
	.news-list {
		gap: 12px;
	}
	.news-item {
		gap: 12px;
		padding: 12px;
	}
	.news-date {
		min-width: 75px;
		padding: 8px 10px;
		font-size: 12px;
	}
	.news-heading {
		font-size: 14px;
	}
	.news-summary {
		font-size: 12px;
	}
}
@media (max-width: 480px) {
	.news-section {
		padding: 12px 0;
	}
	.news-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 12px;
		padding-bottom: 10px;
	}
	.news-title {
		font-size: 16px;
	}
	.news-more {
		font-size: 12px;
	}
	.news-list {
		gap: 10px;
	}
	.news-item {
		flex-direction: column;
		gap: 10px;
		padding: 10px;
	}
	.news-date {
		min-width: auto;
		width: fit-content;
		padding: 6px 10px;
		font-size: 11px;
	}
	.news-heading {
		font-size: 13px;
	}
	.news-summary {
		font-size: 11px;
		-webkit-line-clamp: 3;
	}
}
.news-more-button {
	text-align: center;
	margin-top: 20px;
}
.btn-more {
	display: inline-block;
	padding: 12px 40px;
	background: transparent;
	color: #005ca7;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #005ca7;
	border-radius: 6px;
	transition: all 0.3s ease;
}
.btn-more:hover {
	background: #005ca7;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 92, 167, 0.3);
}
.btn-more:active {
	transform: translateY(0);
}
@media (max-width: 768px) {
	.news-more-button {
		margin-top: 15px;
	}
	.btn-more {
		padding: 10px 35px;
		font-size: 14px;
	}
}
@media (max-width: 480px) {
	.news-more-button {
		margin-top: 12px;
	}
	.btn-more {
		padding: 10px 30px;
		font-size: 13px;
		width: 100%;
	}
}