.news-grid {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 0;
}

.news-card {
	background: white;
	border-radius: 24px;
	margin-bottom: 30px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.3s;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid #e2e8f0;
}
.news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
	.news-card {
		flex-direction: row;
	}
	.news-image {
		width: 280px;
		flex-shrink: 0;
	}
}

.news-image {
	background-size: cover;
	background-position: center;
	min-height: 200px;
}

.news-content {
	padding: 25px;
	flex: 1;
}

.news-date {
	color: #2c5f8a;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.news-date i {
	margin-right: 5px;
}

.news-title {
	font-size: 1.4rem;
	margin-bottom: 12px;
	line-height: 1.3;
}

.news-title a {
	color: #1a405e;
	text-decoration: none;
	transition: color 0.2s;
}

.news-title a:hover {
	color: #2c5f8a;
}

.news-excerpt {
	color: #5a6e7e;
	line-height: 1.5;
	margin-bottom: 20px;
}

.news-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.read-more {
	background: #2c5f8a;
	color: white;
	padding: 8px 20px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 600;
	transition: background 0.2s;
	display: inline-block;
}

.read-more:hover {
	background: #1a405e;
}

.news-views {
	color: #94a3b8;
	font-size: 0.8rem;
}

/* Пагинация */
.pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 40px 0;
	flex-wrap: wrap;
}

.pagination a,
.pagination span {
	padding: 10px 16px;
	border-radius: 40px;
	text-decoration: none;
	background: white;
	color: #2c5f8a;
	border: 1px solid #e2e8f0;
	transition: all 0.2s;
}

.pagination a:hover {
	background: #2c5f8a;
	color: white;
	border-color: #2c5f8a;
}

.pagination .current {
	background: #2c5f8a;
	color: white;
	border-color: #2c5f8a;
}

/* Боковая панель */
.sidebar {
	max-width: 300px;
	margin: 0 auto 40px;
}

.sidebar-widget {
	background: #f8fafe;
	border-radius: 20px;
	padding: 20px;
	margin-bottom: 25px;
}

.sidebar-widget h3 {
	margin-bottom: 15px;
	color: #1a405e;
}

.popular-news-item {
	padding: 10px 0;
	border-bottom: 1px solid #e2e8f0;
}

.popular-news-item:last-child {
	border-bottom: none;
}

.popular-news-item a {
	color: #1a405e;
	text-decoration: none;
	font-weight: 500;
}

.popular-news-item a:hover {
	color: #2c5f8a;
}

.popular-news-item small {
	color: #94a3b8;
	font-size: 0.75rem;
}

.two-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.news-main {
	flex: 1;
	min-width: 0;
}

@media (max-width: 768px) {
	.two-columns {
		flex-direction: column;
	}
	.sidebar {
		order: -1;
	}
}

.no-news {
	text-align: center;
	padding: 60px;
	background: #f8fafe;
	border-radius: 24px;
}
