.news-section {
	background: #fff;
}

.news-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 32px;
	margin-bottom: 42px;
}

.news-head .section-text {
	margin-bottom: 0;
}

.news-grid {
	display: grid;
	align-items: stretch;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.news-card {
	height: 100%;
	background: #fff;
	border: 1px solid #edf2f6;
	box-shadow: 0 14px 34px rgba(15, 35, 52, .05);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.news-card-link {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	color: inherit;
	text-decoration: none;
}

.news-card:hover {
	transform: translateY(-4px);
	border-color: rgba(81, 120, 161, .26);
	box-shadow: 0 22px 46px rgba(15, 35, 52, .08);
}

.news-image {
	min-height: 190px;
	background: linear-gradient(135deg, rgba(81, 120, 161, .06), rgba(255, 255, 255, .85)), #f3f7fa;
	border-bottom: 1px solid #edf2f6;
	display: grid;
	place-items: center;
	color: rgba(54, 91, 127, .72);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	overflow: hidden;
}

.news-image img {
	width: 100%;
	height: 100%;
	min-height: 190px;
	object-fit: cover;
	display: block;
}


.news-body {
	padding: 26px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1;
}

.news-content {
	flex: 0 0 auto;

}

.news-date {
	color: var(--blue);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.news-body h3 {
	font-size: 21px;
	line-height: 1.22;
	letter-spacing: -.45px;
	margin-bottom: 12px;
}

.news-body p {
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 22px;
	font-weight: 400;
}

.news-link {
	margin-top: auto;
	color: var(--blue-dark);
	font-size: 13px;
	font-weight: 800;
}

.news-meta {
	color: var(--blue);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 12px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.news-empty {
	grid-column: 1 / -1;
	padding: 28px;
	border: 1px dashed #d6e2ec;
	background: #f8fbfd;
	color: var(--muted);
	text-align: center;
}

.vyrocni-zpravy {
	justify-content: center;
	margin-top: 2em;
}

@media (max-width: 580px) {
	.news-grid {
		grid-template-columns: 1fr;
	}
	.news-grid .news-card:nth-child(n + 4) {
		display: none;
	}
}
