.rt-news-page {
	--rt-dark: #18191a;
	--rt-grey: #313235;
	--rt-muted: #777c86;
	--rt-green: #6ec702;
	--rt-red: #e61e0a;
	--rt-border: #e0e0e0;
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 16px 48px;
	font-family: NotoSans, Arial, Verdana, sans-serif;
	color: var(--rt-grey);
}

.rt-news-page__title {
	font-size: 28px;
	font-weight: 700;
	color: var(--rt-dark);
	border-left: 4px solid var(--rt-red);
	padding-left: 12px;
	margin: 0 0 24px;
}

.rt-news-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 24px;
	align-items: start;
}

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

.rt-card {
	background: #fff;
	border: 1px solid var(--rt-border);
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rt-card:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.rt-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.rt-card__media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #eee;
}

.rt-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rt-card__body {
	padding: 12px 14px 16px;
}

.rt-card__tag {
	display: inline-block;
	color: var(--rt-green);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.rt-card__title {
	font-size: 17px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--rt-dark);
	margin: 0 0 8px;
}

.rt-card__time {
	font-size: 12px;
	color: var(--rt-muted);
}

.rt-sidebar {
	background: #fff;
	border: 1px solid var(--rt-border);
	border-radius: 4px;
	padding: 16px;
}

.rt-sidebar__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--rt-dark);
	border-left: 4px solid var(--rt-green);
	padding-left: 10px;
	margin: 0 0 12px;
}

.rt-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rt-sidebar__item {
	display: flex;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid var(--rt-border);
}

.rt-sidebar__item:last-child {
	border-bottom: none;
}

.rt-sidebar__num {
	font-size: 20px;
	font-weight: 800;
	color: var(--rt-border);
	min-width: 22px;
}

.rt-sidebar__link {
	color: var(--rt-dark);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.35;
}

.rt-sidebar__link:hover {
	color: var(--rt-red);
}

@media (max-width: 960px) {
	.rt-news-layout {
		grid-template-columns: 1fr;
	}
	.rt-news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.rt-news-grid {
		grid-template-columns: 1fr;
	}
}
