.td-content__wrapper-inner > h1 {
	margin: 20px 0 24px;
	font-size: 31px;
	line-height: 37px;
}

.td-news-list {
	width: 100%;
	padding-bottom: 62px;
}

.td-news-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px 16px;
}

.td-news-card {
	min-width: 0;
}

.td-news-card__link {
	display: flex;
	height: 100%;
	min-height: 302px;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: 16px;
	color: var(--td-ink, #070707);
	background: var(--td-surface, #fff);
	text-decoration: none;
	transition: border-color .2s ease, color .2s ease;
}

.td-news-card__link:hover,
.td-news-card__link:focus-visible {
	border-color: var(--td-green, #5ac80b);
	color: var(--td-red, #cd2128);
	outline: 0;
}

.td-news-card__image {
	display: flex;
	width: 100%;
	aspect-ratio: 285 / 160;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: 0;
	border-radius: 15px 15px 0 0;
	background: #eef0f0;
}

.td-news-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.td-news-card__image.no-image::before {
	content: "\70";
	color: #d5d7d7;
	font-family: 'topdetal', sans-serif;
	font-size: 58px;
}

.td-news-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 16px;
}

.td-redesign .td-news-card__title {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 19px;
}

.td-news-card__text {
	display: -webkit-box;
	overflow: hidden;
	margin: 12px 0 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	color: var(--td-muted, #808080);
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
}

@media only screen and (max-width: 900px) {
	.td-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 560px) {
	.td-content__wrapper-inner > h1 {
		margin: 16px 0 20px;
		font-size: 24px;
		line-height: 29px;
	}

	.td-news-list {
		padding-bottom: 42px;
	}

	.td-news-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
	}

	.td-news-card__link {
		min-height: 0;
	}
}
