.tm-news-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	height: 100%;
}

.tm-news-national {
	min-width: 0;
	padding: 15px;
	border: 1px solid rgba(255, 118, 40, 0.48);
	border-top: 3px solid #ff7628;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 118, 40, 0.08), transparent 42%),
		#fff;
	box-shadow: 0 14px 34px rgba(193, 76, 10, 0.09);
}

.tm-news-national-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 13px;
	padding: 0 2px 12px;
	border-bottom: 1px solid rgba(255, 118, 40, 0.22);
}

.tm-news-national-heading span {
	display: block;
	margin-bottom: 3px;
	color: #d94f00;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.tm-news-national-heading strong {
	display: block;
	color: #171717;
	font-size: 18px;
	line-height: 1.15;
}

.tm-news-national-heading small {
	max-width: 150px;
	color: #6a6a6a;
	font-size: 9px;
	font-weight: 700;
	line-height: 1.25;
	text-align: right;
}

.tm-news-national-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.tm-news-card {
	min-width: 0;
	min-height: 0;
	display: flex;
	flex-direction: column;
	padding: 15px;
	border: 1px solid #e1e1e1;
	border-radius: 8px;
	color: #111;
	background: #fff;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.045);
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tm-news-card-feed {
	position: relative;
	overflow: hidden;
}

.tm-news-card-feed::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 42px;
	height: 3px;
	background: #ff7628;
}

.tm-news-card:hover {
	color: #111;
	border-color: #ff7628;
	transform: translateY(-3px);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.tm-news-kicker {
	color: #d94f00;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.tm-news-source {
	display: block;
	margin: 8px 0 9px;
	font-size: 19px;
	line-height: 1.15;
}

.tm-news-description {
	flex: 1;
	color: #5e5e5e;
	font-size: 12.5px;
	line-height: 1.45;
}

.tm-news-action {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	width: fit-content;
	margin-top: 12px;
	color: #c94900;
	font-size: 11px;
	font-weight: 900;
	line-height: 1.3;
	text-decoration: none;
}

.tm-news-action::after {
	content: "\2192";
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1;
	transition: transform 0.2s ease;
}

.tm-news-action:hover {
	color: #8e3500;
}

.tm-news-action:hover::after {
	transform: translateX(3px);
}

.tm-news-headlines {
	flex: 1;
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tm-news-headlines li {
	margin: 0;
	padding: 9px 0 0 11px;
	border-top: 1px solid #ececec;
	border-left: 2px solid rgba(255, 118, 40, 0.3);
}

.tm-news-headlines a {
	display: block;
	color: #202020;
	font-size: 12px;
	font-weight: 750;
	line-height: 1.3;
	text-decoration: none;
}

.tm-news-headlines a:hover {
	color: #c94900;
}

.tm-news-headlines time {
	display: block;
	margin-top: 3px;
	color: #777;
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.tm-news-empty {
	color: #666;
	font-size: 12px;
	line-height: 1.4;
}

.tm-news-international {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	padding: 15px;
	border: 1px solid #2f2f2f;
	border-top: 3px solid #ff7628;
	border-radius: 8px;
	color: #fff;
	background:
		linear-gradient(120deg, rgba(255, 118, 40, 0.12), transparent 40%),
		#171717;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.tm-news-international-heading span {
	display: block;
	margin-bottom: 3px;
	color: #ff9457;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.tm-news-international-heading strong {
	display: block;
	color: #fff;
	font-size: 17px;
	line-height: 1.15;
}

.tm-news-international-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
}

.tm-news-international-link {
	min-width: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	min-height: 48px;
	padding: 11px 14px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 6px;
	color: #fff;
	background: rgba(255, 255, 255, 0.07);
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tm-news-international-link:hover {
	color: #fff;
	border-color: rgba(255, 118, 40, 0.75);
	background: rgba(255, 118, 40, 0.14);
	transform: translateY(-2px);
}

.tm-news-international-link strong {
	min-width: 0;
	overflow-wrap: normal;
	word-break: normal;
	color: #fff;
	font-size: 14px;
	line-height: 1.2;
}

.tm-news-international-link span {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	color: #ffad7e;
	background: rgba(255, 118, 40, 0.14);
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: 900;
}

@media (max-width: 900px) {
	.tm-news-grid {
		height: auto;
	}

}

@media (max-width: 560px) {
	.tm-news-national-heading {
		display: block;
	}

	.tm-news-national-heading small {
		display: block;
		max-width: none;
		margin-top: 5px;
		text-align: left;
	}

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

	.tm-news-international {
		padding: 14px;
	}

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

	.tm-news-international-link {
		padding: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tm-news-card {
		transition: none;
	}

	.tm-news-international-link,
	.tm-news-action::after {
		transition: none;
	}
}
