.news-single-block {
	margin-top: 75px;
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 70px;
}
.news-single-content {
	font-weight: 500;
	font-size: var(--size-lg);

	* {
		margin-top: 0;
		margin-bottom: 12px;
		line-height: 1.3;
	}
}

.news-single-img {
	flex-shrink: 0;
	width: 427px;
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 10px;

	img {
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
}

.news-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 50px;
}

.news-card {
	display: block;
	background: var(--color-purple-light);
	border-radius: 15px;
	overflow: hidden;
	width: 100%;
	color: var(--color-black);
	padding: 24px;
	box-sizing: border-box;
	text-decoration: none;
	&:hover {
		.red-button {
			background: var(--color-purple);
		}
		.news-card-img img {
			transform: scale(1.2);
		}
	}
}

.news-card-img {
	width: 100%;
	height: 220px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-purple);
	border-radius: 10px;
	img {
		height: 100%;
		width: 100%;
		object-fit: cover;
		transition: 0.4s all ease;
	}
}

.news-card-content {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: space-between;
	gap: 24px;
	height: 100%;
}

.news-card-title {
	margin: 18px 0;
	font-weight: 500;
	font-size: 28px;
	line-height: 1;
}

.news-card-description {
	font-weight: 500;
	font-size: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3;
	max-height: calc(1.3em * 4);
}
