.news-layout {
	margin: 0 auto;
	padding: 32px 16px 0;
	max-width: 1100px;
}

body.news-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

body.news-page .news-layout {
	flex: 1;
	display: flex;
	flex-direction: column;
}

body.news-page .news-layout .footer {
	margin-top: auto;
}

.news-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.news-header__logo {
	max-width: 170px;
}

.news-header__links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.news-page-title {
	margin-bottom: 8px;
}

.news-page-subtitle {
	color: #c5c5c5;
	margin-bottom: 32px;
}

.news-grid {
	margin-top: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.news-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.news-card__img {
	width: 100%;
	object-fit: cover;
	height: 160px;
}

.news-card__body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.news-card__title {
	font-family: "TTFirsNeueTrial";
	font-size: 24px;
	line-height: 1.1;
}

.news-card__text {
	color: #c5c5c5;
	flex: 1;
}

.news-article {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.news-article__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #c5c5c5;
	font-size: 14px;
}

.news-article__meta img {
	width: 16px;
	height: 16px;
}

.news-article__img {
	border-radius: 12px;
}

.news-article__text {
	color: #e4e4e4;
	line-height: 1.5;
}

.news-article__text a {
	color: #03f755fc;
	text-decoration: underline;
}

.news-article__text a:hover {
	opacity: 0.9;
}

.news-article__text h3 {
	margin: 12px 0;
}

.news-article__actions {
	margin-bottom: 16px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.news-footer {
	margin-top: 32px;
	color: #c5c5c5;
}

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

@media (max-width: 768px) {
	.news-layout {
		padding-top: 20px;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}

	.news-header {
		flex-direction: column;
		align-items: flex-start;
	}
}
