.nrt-top-stories {
	display: grid;
	grid-template-columns: 1.4fr 1fr 0.9fr;
	gap: 24px;
	margin-bottom: 40px;
	align-items: start;
}

/* ---------- Column 1: Hero ---------- */
.nrt-ts-hero {
	display: block;
	position: relative;
	text-decoration: none;
	border-radius: 4px 4px 0 0;
	overflow: hidden;
	background: #0b1f3a;
}
.nrt-ts-hero-media img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
	opacity: 0.9;
}
.nrt-ts-hero-overlay {
	background: #0b1f3a;
	padding: 20px 22px 24px;
}
.nrt-ts-hero-title {
	color: #fff;
	font-size: 24px;
	line-height: 1.3;
	margin: 0 0 10px;
}
.nrt-ts-hero-sub {
	color: #d5dbe6;
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	padding-top: 10px;
	border-top: 1px solid rgba(255,255,255,0.15);
}
.nrt-ts-hero-flag {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #0b1f3a;
	border-top: 2px solid;
	padding: 12px 22px 18px;
	border-radius: 0 0 4px 4px;
}
.nrt-ts-hero-flag a {
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}
.nrt-ts-hero-flag a:hover {
	text-decoration: underline;
}

/* ---------- Shared tag pill ---------- */
.nrt-ts-tag {
	display: inline-block;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	padding: 3px 8px;
	border-radius: 2px;
	margin-bottom: 6px;
}
.nrt-ts-tag-sm {
	margin-bottom: 0;
	margin-right: 6px;
}

/* ---------- Column 2: Secondary cards ---------- */
.nrt-ts-secondary-col {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.nrt-ts-card {
	display: block;
	text-decoration: none;
	color: inherit;
}
.nrt-ts-card-media img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
	margin-bottom: 10px;
}
.nrt-ts-card-body {
	display: flex;
	flex-direction: column;
}
.nrt-ts-card-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	color: #111;
}

/* ---------- Column 3: Latest News list ---------- */
.nrt-ts-latest-col {
	border-top: 3px solid #0b1f3a;
	padding-top: 12px;
	max-height: 480px;
	overflow-y: auto;
}
.nrt-ts-latest-head {
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #0b1f3a;
	margin-bottom: 10px;
}
.nrt-ts-latest-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.nrt-ts-latest-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}
.nrt-ts-latest-time {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #999;
}
.nrt-ts-latest-title {
	font-size: 14px;
	font-weight: 600;
	color: #111;
	text-decoration: none;
	line-height: 1.4;
}
.nrt-ts-latest-title:hover {
	text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.nrt-top-stories {
		grid-template-columns: 1fr;
	}
	.nrt-ts-latest-col {
		max-height: none;
		overflow-y: visible;
	}
}
