.tn-template-main {
	background: #fff;
	min-height: 60vh;
}

.tn-shell,
.tn-shell * {
	box-sizing: border-box;
}

.tn-shell {
	--tn-ink: #121722;
	--tn-muted: #697181;
	--tn-line: #e8ebf0;
	--tn-soft: #f5f8fb;
	--tn-blue: #eaf5ff;
	--tn-red: #d9363e;
	--tn-radius: 24px;
	width: min(1240px, calc(100% - 40px));
	margin: 0 auto;
	padding: 68px 0 90px;
	color: var(--tn-ink);
	font-family: inherit;
	line-height: 1.75;
}

.tn-shell a {
	color: inherit;
	text-decoration: none;
}

.tn-shell .screen-reader-text {
	position: absolute !important;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.tn-archive-head {
	position: relative;
	padding: 26px 0 36px;
	text-align: center;
}

.tn-archive-head::before {
	position: absolute;
	top: -20px;
	left: 50%;
	width: 310px;
	height: 150px;
	border-radius: 50%;
	background: radial-gradient(circle, color-mix(in srgb, var(--tn-accent) 17%, transparent), transparent 68%);
	content: "";
	transform: translateX(-50%);
	pointer-events: none;
}

.tn-eyebrow,
.tn-section-heading > div > span,
.tn-summary-box > span,
.tn-source-box span,
.tn-university-box span,
.tn-cta > div > span {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #9c7213;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
}

.tn-eyebrow::before,
.tn-eyebrow::after {
	width: 28px;
	height: 1px;
	background: var(--tn-accent);
	content: "";
}

.tn-archive-head h1 {
	position: relative;
	margin: 7px 0 6px;
	font-size: clamp(36px, 5.6vw, 70px);
	font-weight: 900;
	letter-spacing: -.045em;
	line-height: 1.2;
}

.tn-archive-head p {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
	color: var(--tn-muted);
	font-size: clamp(15px, 1.7vw, 19px);
}

.tn-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr);
	grid-template-rows: repeat(2, minmax(205px, 1fr));
	gap: 18px;
	margin-top: 34px;
}

.tn-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--tn-line);
	border-radius: var(--tn-radius);
	background: #fff;
	box-shadow: 0 16px 44px rgba(28, 34, 45, .055);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tn-card:hover {
	border-color: color-mix(in srgb, var(--tn-accent) 46%, var(--tn-line));
	box-shadow: 0 22px 58px rgba(28, 34, 45, .11);
	transform: translateY(-4px);
}

.tn-card-media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #17202c;
}

.tn-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.tn-card:hover .tn-card-media img {
	transform: scale(1.035);
}

.tn-image-placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background:
		radial-gradient(circle at 25% 20%, rgba(255,255,255,.10), transparent 25%),
		linear-gradient(145deg, #263344, #121820);
	color: #fff;
}

.tn-image-placeholder b {
	font-family: Georgia, serif;
	font-size: 72px;
	font-style: italic;
	line-height: 1;
	color: var(--tn-accent);
}

.tn-image-placeholder small {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .22em;
}

.tn-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8,12,18,.02) 30%, rgba(8,12,18,.68));
}

.tn-badges {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.tn-badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 11px;
	border: 1px solid rgba(255,255,255,.38);
	border-radius: 999px;
	background: rgba(17,23,34,.74);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.3;
}

.tn-badge--breaking {
	border-color: transparent;
	background: var(--tn-red);
}

.tn-badge--updated {
	border-color: transparent;
	background: #21775e;
}

.tn-badge--gold {
	border-color: #eddaa8;
	background: #fff8e6;
	color: #8c6411;
}

.tn-card-body {
	padding: 20px 21px 22px;
}

.tn-card-meta,
.tn-single-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 18px;
	color: var(--tn-muted);
	font-size: 12px;
	font-weight: 600;
}

.tn-card-meta > *:not(:first-child),
.tn-single-meta > *:not(:first-child) {
	position: relative;
}

.tn-card-meta > *:not(:first-child)::before,
.tn-single-meta > *:not(:first-child)::before {
	position: absolute;
	top: 50%;
	right: -11px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--tn-accent);
	content: "";
}

.tn-card h3 {
	margin: 9px 0 8px;
	font-size: clamp(18px, 1.65vw, 23px);
	font-weight: 850;
	letter-spacing: -.025em;
	line-height: 1.5;
}

.tn-card h3 a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tn-card p {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 13px;
	color: var(--tn-muted);
	font-size: 14px;
	line-height: 1.8;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tn-card--no-media .tn-card-body {
	padding: 26px;
}

.tn-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #926a10 !important;
	font-size: 13px;
	font-weight: 850;
}

.tn-read-more span,
.tn-related .tn-section-heading > a span,
.tn-university-actions > a span,
.tn-cta > a span {
	transition: transform .2s ease;
}

.tn-read-more:hover span,
.tn-related .tn-section-heading > a:hover span,
.tn-university-actions > a:hover span,
.tn-cta > a:hover span {
	transform: translateX(-4px);
}

.tn-card--lead {
	grid-row: 1 / 3;
}

.tn-card--lead .tn-card-media {
	position: absolute;
	inset: 0;
	aspect-ratio: auto;
}

.tn-card--lead .tn-card-overlay {
	background: linear-gradient(180deg, rgba(8,12,18,.03) 25%, rgba(8,12,18,.88));
}

.tn-card--lead .tn-card-body,
.tn-card--side .tn-card-body {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	color: #fff;
}

.tn-card--lead .tn-card-body {
	padding: 34px;
}

.tn-card--lead h3 {
	max-width: 780px;
	margin: 10px 0;
	font-size: clamp(25px, 3vw, 42px);
	line-height: 1.4;
}

.tn-card--lead p {
	max-width: 680px;
	color: rgba(255,255,255,.8);
	font-size: 15px;
}

.tn-card--lead .tn-card-meta,
.tn-card--side .tn-card-meta {
	color: rgba(255,255,255,.76);
}

.tn-card--lead .tn-read-more,
.tn-card--side .tn-read-more {
	color: #fff !important;
}

.tn-card--side .tn-card-media {
	position: absolute;
	inset: 0;
	aspect-ratio: auto;
}

.tn-card--side .tn-card-body {
	padding: 20px;
}

.tn-card--side h3 {
	margin-bottom: 4px;
	font-size: 18px;
}

.tn-card--side .tn-read-more {
	display: none;
}

.tn-filter-wrap {
	margin: 68px 0 28px;
}

.tn-topic-nav {
	display: flex;
	overflow-x: auto;
	gap: 8px;
	margin: 30px 0 -38px;
	padding: 2px 0 8px;
	scrollbar-width: thin;
}

.tn-topic-nav a {
	flex: 0 0 auto;
	padding: 8px 13px;
	border: 1px solid var(--tn-line);
	border-radius: 999px;
	background: #fff;
	font-size: 12px;
	font-weight: 800;
}

.tn-topic-nav a:hover,
.tn-topic-nav a.is-active {
	border-color: var(--tn-ink);
	background: var(--tn-ink);
	color: #fff;
}

.tn-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 22px;
	margin-bottom: 17px;
}

.tn-section-heading h2 {
	margin: 1px 0 0;
	font-size: clamp(25px, 3vw, 34px);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: 1.4;
}

.tn-filters {
	display: grid;
	grid-template-columns: minmax(260px, 1.5fr) minmax(190px, .8fr) minmax(170px, .7fr) auto;
	gap: 10px;
	padding: 12px;
	border: 1px solid var(--tn-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 14px 40px rgba(28, 34, 45, .05);
}

.tn-filters--relations {
	grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(140px, .8fr)) auto;
}

.tn-filters label {
	margin: 0;
}

.tn-filters input,
.tn-filters select {
	width: 100%;
	height: 50px;
	margin: 0;
	padding: 0 16px;
	border: 1px solid #e2e6eb;
	border-radius: 13px;
	outline: none;
	background: var(--tn-soft);
	color: var(--tn-ink);
	font-family: inherit;
	font-size: 13px;
	transition: border-color .2s, box-shadow .2s, background .2s;
}

.tn-filters input:focus,
.tn-filters select:focus {
	border-color: var(--tn-accent);
	background: #fff;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--tn-accent) 15%, transparent);
}

.tn-search-field {
	position: relative;
}

.tn-search-field svg {
	position: absolute;
	top: 50%;
	right: 15px;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: #9299a4;
	stroke-linecap: round;
	stroke-width: 1.8;
	transform: translateY(-50%);
}

.tn-search-field input {
	padding-right: 43px;
}

.tn-filter-submit {
	min-width: 126px;
	height: 50px;
	padding: 0 20px;
	border: 0;
	border-radius: 13px;
	background: var(--tn-ink);
	color: #fff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: background .2s, transform .2s;
}

.tn-filter-submit:hover {
	background: #2a3342;
	transform: translateY(-1px);
}

.tn-filter-reset {
	grid-column: 1 / -1;
	justify-self: end;
	padding: 0 5px;
	color: #a36f00 !important;
	font-size: 12px;
	font-weight: 700;
}

.tn-filter-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 10px 15px;
	border: 1px solid var(--tn-line);
	border-radius: 12px;
	background: #fff;
	color: var(--tn-ink);
	font-family: inherit;
	font-weight: 800;
}

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

.tn-empty {
	padding: 70px 24px;
	border: 1px dashed #d8dde5;
	border-radius: var(--tn-radius);
	background: var(--tn-soft);
	text-align: center;
}

.tn-empty > span {
	display: block;
	color: var(--tn-accent);
	font-size: 48px;
	line-height: 1;
}

.tn-empty h3 {
	margin: 10px 0 2px;
	font-size: 23px;
}

.tn-empty p {
	margin: 0;
	color: var(--tn-muted);
}

.tn-pagination {
	margin-top: 42px;
}

.tn-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tn-pagination a,
.tn-pagination span {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	place-items: center;
	border: 1px solid var(--tn-line);
	border-radius: 12px;
	background: #fff;
	font-size: 13px;
	font-weight: 800;
}

.tn-pagination .current {
	border-color: var(--tn-ink);
	background: var(--tn-ink);
	color: #fff;
}

/* Single news */
.tn-single {
	max-width: 1180px;
}

.tn-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 30px;
	color: var(--tn-muted);
	font-size: 12px;
	font-weight: 650;
}

.tn-breadcrumbs a:hover {
	color: #946b10;
}

.tn-single-head {
	max-width: 980px;
	margin: 0 auto 34px;
	text-align: center;
}

.tn-single-labels {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.tn-single-head h1 {
	margin: 0;
	font-size: clamp(34px, 5.2vw, 62px);
	font-weight: 900;
	letter-spacing: -.052em;
	line-height: 1.3;
}

.tn-single-meta {
	justify-content: center;
	font-size: 13px;
}

.tn-single-hero {
	overflow: hidden;
	margin: 0 0 28px;
	border-radius: 28px;
	background: var(--tn-soft);
}

.tn-single-hero img {
	display: block;
	width: 100%;
	height: clamp(340px, 48vw, 560px);
	object-fit: cover;
}

.tn-single-hero figcaption {
	padding: 8px 18px;
	color: var(--tn-muted);
	font-size: 11px;
}

.tn-notice {
	max-width: 930px;
	margin: 22px auto;
	padding: 16px 20px;
	border: 1px solid #cce7dc;
	border-right: 4px solid #267d61;
	border-radius: 14px;
	background: #effaf6;
	color: #245c4b;
	font-size: 13px;
}

.tn-notice--expired {
	border-color: #f0d2d2;
	border-right-color: var(--tn-red);
	background: #fff4f4;
	color: #8a3034;
}

.tn-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 820px) 150px;
	justify-content: center;
	gap: 48px;
	margin-top: 38px;
}

.tn-article-layout--wide {
	grid-template-columns: minmax(0, 880px);
}

.tn-article-main {
	min-width: 0;
}

.tn-summary-box {
	margin-bottom: 30px;
	padding: 25px 28px;
	border: 1px solid #dfebf5;
	border-right: 5px solid var(--tn-accent);
	border-radius: 17px;
	background: linear-gradient(135deg, #fbfdff, var(--tn-blue));
}

.tn-summary-box p {
	margin: 5px 0 0;
	color: #263142;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.95;
}

.tn-article-content {
	color: #242b36;
	font-size: 18px;
	line-height: 2.05;
}

.tn-article-content > *:first-child {
	margin-top: 0;
}

.tn-article-content p {
	margin: 0 0 1.35em;
}

.tn-article-content h2,
.tn-article-content h3,
.tn-article-content h4 {
	color: var(--tn-ink);
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: 1.55;
}

.tn-article-content h2 {
	margin: 2em 0 .65em;
	font-size: 30px;
}

.tn-article-content h3 {
	margin: 1.7em 0 .55em;
	font-size: 24px;
}

.tn-article-content a {
	border-bottom: 1px solid color-mix(in srgb, var(--tn-accent) 65%, transparent);
	color: #8d650d;
}

.tn-article-content blockquote {
	margin: 1.6em 0;
	padding: 20px 24px;
	border: 0;
	border-right: 4px solid var(--tn-accent);
	border-radius: 13px;
	background: #faf8f1;
	font-size: 18px;
	font-weight: 700;
}

.tn-article-content img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
}

.tn-article-content ul,
.tn-article-content ol {
	margin: 0 0 1.5em;
	padding-right: 1.3em;
}

.tn-article-content li {
	margin-bottom: .55em;
}

.tn-content-image {
	margin: 2em 0;
	text-align: center;
}

.tn-content-image img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 480px;
	height: auto;
	margin: 0 auto;
	border-radius: 18px;
	object-fit: contain;
}

.tn-content-image figcaption {
	margin-top: 8px;
	color: var(--tn-muted);
	font-size: 11px;
}

.tn-content-table-wrap {
	overflow-x: auto;
	margin: 1.7em 0;
	border-radius: 14px;
}

.tn-content-table-wrap .tn-content-table {
	margin: 0;
}

.tn-content-quote cite {
	display: block;
	margin-top: 8px;
	color: var(--tn-muted);
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
}

.tn-content-callout {
	margin: 1.8em 0;
	padding: 20px 22px;
	border: 1px solid #d9e8f3;
	border-right: 4px solid #4d91c3;
	border-radius: 14px;
	background: #f2f8fd;
}

.tn-content-callout--warning {
	border-color: #eedca8;
	border-right-color: #d19b1d;
	background: #fff9e9;
}

.tn-content-callout--success {
	border-color: #cfe9dd;
	border-right-color: #2b8b67;
	background: #f0faf6;
}

.tn-content-callout strong {
	display: block;
	margin-bottom: 4px;
	color: var(--tn-ink);
	font-size: 15px;
}

.tn-content-callout p {
	margin: 0;
	font-size: 14px;
}

.tn-content-button-wrap {
	margin: 2em 0 !important;
}

.tn-content-button {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 12px 17px;
	border: 0 !important;
	border-radius: 11px;
	background: var(--tn-ink);
	color: #fff !important;
	font-size: 13px;
	font-weight: 850;
}

.tn-content-divider {
	width: min(180px, 45%);
	height: 1px;
	margin: 2.7em auto;
	border: 0;
	background: linear-gradient(90deg, transparent, #bdc3cc, transparent);
}

.tn-content-embed {
	position: relative;
	overflow: hidden;
	margin: 2em 0;
	border-radius: 16px;
}

.tn-content-embed iframe,
.tn-content-embed video {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

.tn-content-html {
	margin: 1.5em 0;
}

.tn-news-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 28px;
}

.tn-news-tags a {
	padding: 6px 10px;
	border: 1px solid var(--tn-line);
	border-radius: 999px;
	background: var(--tn-soft);
	color: #586272;
	font-size: 11px;
	font-weight: 800;
}

.tn-article-content table {
	width: 100%;
	margin: 1.7em 0;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--tn-line);
	border-radius: 14px;
	overflow: hidden;
}

.tn-article-content th,
.tn-article-content td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--tn-line);
	text-align: right;
}

.tn-article-content th {
	background: var(--tn-soft);
}

.tn-share-card {
	position: sticky;
	top: 110px;
	align-self: start;
	padding: 16px 12px;
	border: 1px solid var(--tn-line);
	border-radius: 17px;
	background: #fff;
	text-align: center;
}

.tn-share-card strong {
	display: block;
	margin-bottom: 10px;
	font-size: 12px;
}

.tn-share-card > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px;
}

.tn-share-card a,
.tn-share-card button {
	display: grid;
	width: 34px;
	height: 34px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 10px;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}

.tn-share-card svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.tn-share-whatsapp { background: #20a764; }
.tn-share-telegram { background: #238fc5; }
.tn-share-facebook { background: #1877f2; }
.tn-share-x { background: #111; }
.tn-copy-link { background: #2f3948; }

.tn-share-card small {
	display: block;
	margin-top: 12px;
	color: var(--tn-muted);
	font-size: 10px;
}

.tn-source-box {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 38px;
	padding: 20px;
	border: 1px solid #dce8df;
	border-radius: 17px;
	background: #f7fbf8;
}

.tn-analysis-box {
	margin-top: 38px;
	padding: 28px 30px;
	border: 1px solid #d7e8df;
	border-right: 5px solid #2f8a68;
	border-radius: 18px;
	background: linear-gradient(135deg, #fbfffd, #eef8f3);
}

.tn-analysis-box > span {
	color: #277356;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
}

.tn-analysis-box h2 {
	margin: 5px 0 10px;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.55;
}

.tn-analysis-box p {
	margin: 0 0 .7em;
	font-size: 16px;
	line-height: 2;
}

.tn-analysis-box p:last-child {
	margin-bottom: 0;
}

.tn-source-icon {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	place-items: center;
	border-radius: 50%;
	background: #dff1e6;
	color: #237551;
	font-weight: 900;
}

.tn-source-box span,
.tn-source-box strong,
.tn-source-box a {
	display: block;
}

.tn-source-box span {
	color: #45705c;
	font-size: 10px;
}

.tn-source-box strong {
	font-size: 15px;
}

.tn-source-box a {
	margin-top: 2px;
	color: #247255;
	font-size: 12px;
	font-weight: 800;
}

.tn-university-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	margin-top: 20px;
	padding: 24px 26px;
	border: 1px solid #dfe5ec;
	border-radius: 18px;
	background: #fff;
}

.tn-university-box h2 {
	margin: 3px 0 0;
	font-size: 22px;
}

.tn-university-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 8px;
}

.tn-university-actions > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	padding: 10px 14px;
	border-radius: 11px;
	background: var(--tn-soft);
	font-size: 12px;
	font-weight: 850;
}

.tn-university-actions > a:last-child:not(:first-child) {
	background: #fff7e2;
	color: #8c6411;
}

.tn-relations-box {
	margin-top: 20px;
	padding: 23px 25px;
	border: 1px solid #dfe5ec;
	border-radius: 18px;
	background: #fff;
}

.tn-relations-box > span {
	color: #8c6411;
	font-size: 11px;
	font-weight: 900;
}

.tn-relation-links {
	display: grid;
	gap: 9px;
	margin-top: 11px;
}

.tn-relation-links > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 11px;
	background: var(--tn-soft);
}

.tn-relation-primary {
	font-size: 15px;
	font-weight: 900;
}

.tn-relation-primary:hover {
	color: #8c6411;
}

.tn-relation-archive {
	flex: 0 0 auto;
	color: #8c6411 !important;
	font-size: 11px;
	font-weight: 800;
}

.tn-relations-box--majors {
	border-color: #d9e7f0;
	background: #fbfdff;
}

.tn-university-news {
	width: 100%;
	padding-top: 42px;
	padding-bottom: 42px;
}

.tn-cta {
	position: relative;
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 72px;
	padding: 38px 42px;
	border-radius: 26px;
	background: #161d28;
	color: #fff;
}

.tn-cta::before {
	position: absolute;
	top: -100px;
	left: -50px;
	width: 330px;
	height: 330px;
	border: 70px solid rgba(255,255,255,.025);
	border-radius: 50%;
	content: "";
}

.tn-cta > div,
.tn-cta > a {
	position: relative;
}

.tn-cta h2 {
	margin: 5px 0 4px;
	font-size: clamp(25px, 3vw, 36px);
	line-height: 1.45;
}

.tn-cta p {
	margin: 0;
	color: rgba(255,255,255,.66);
	font-size: 14px;
}

.tn-cta > a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	padding: 14px 19px;
	border-radius: 13px;
	background: var(--tn-accent);
	color: #161d28;
	font-size: 13px;
	font-weight: 900;
}

.tn-related {
	margin-top: 78px;
}

.tn-related .tn-section-heading > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 850;
}

@media (max-width: 960px) {
	.tn-hero-grid {
		grid-template-columns: 1.35fr .8fr;
	}

	.tn-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tn-filters {
		grid-template-columns: 1.3fr 1fr 1fr;
	}

	.tn-filter-submit {
		grid-column: 1 / -1;
	}

	.tn-article-layout {
		grid-template-columns: minmax(0, 760px);
	}

	.tn-share-card {
		position: static;
		display: flex;
		align-items: center;
		justify-content: space-between;
		grid-row: 1;
		padding: 12px 15px;
	}

	.tn-share-card > div {
		flex-wrap: nowrap;
	}

	.tn-share-card strong,
	.tn-share-card small {
		margin: 0;
	}
}

@media (max-width: 720px) {
	.tn-shell {
		width: min(100% - 26px, 620px);
		padding: 38px 0 58px;
	}

	.tn-archive-head {
		padding: 15px 0 24px;
	}

	.tn-archive-head h1 {
		font-size: 39px;
	}

	.tn-archive-head p {
		font-size: 14px;
	}

	.tn-hero-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: minmax(360px, auto) minmax(190px, auto);
		gap: 12px;
		margin-top: 20px;
	}

	.tn-card--lead {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.tn-card--lead .tn-card-body {
		padding: 22px;
	}

	.tn-card--lead h3 {
		font-size: 25px;
	}

	.tn-card--lead p {
		font-size: 13px;
	}

	.tn-card--side {
		min-height: 205px;
	}

	.tn-card--side .tn-card-body {
		padding: 13px;
	}

	.tn-card--side h3 {
		font-size: 14px;
		line-height: 1.55;
	}

	.tn-card--side .tn-card-meta {
		font-size: 9px;
	}

	.tn-card--side .tn-badges {
		top: 10px;
		right: 10px;
	}

	.tn-card--side .tn-badge {
		min-height: 22px;
		padding: 3px 8px;
		font-size: 9px;
	}

	.tn-filter-wrap {
		margin-top: 50px;
	}

	.tn-filter-toggle {
		display: inline-flex;
	}

	.tn-filters {
		display: none;
		grid-template-columns: 1fr;
		margin-top: 12px;
	}

	.tn-filters.is-open {
		display: grid;
	}

	.tn-filter-submit {
		grid-column: auto;
	}

	.tn-news-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.tn-card--standard {
		display: grid;
		grid-template-columns: 125px minmax(0, 1fr);
		border-radius: 18px;
	}

	.tn-card--standard.tn-card--no-media {
		display: block;
	}

	.tn-card--standard .tn-card-media {
		min-height: 100%;
		aspect-ratio: auto;
	}

	.tn-card--standard .tn-card-body {
		padding: 14px;
	}

	.tn-card--standard h3 {
		margin: 5px 0;
		font-size: 15px;
	}

	.tn-card--standard p,
	.tn-card--standard .tn-read-more {
		display: none;
	}

	.tn-card--standard .tn-card-meta {
		font-size: 9px;
	}

	.tn-card--standard .tn-badges {
		top: 8px;
		right: 8px;
	}

	.tn-card--standard .tn-badge {
		display: none;
	}

	.tn-card--standard .tn-badge--breaking {
		display: inline-flex;
	}

	.tn-single {
		width: min(100% - 24px, 650px);
		padding-top: 46px;
	}

	.tn-breadcrumbs {
		margin-bottom: 20px;
	}

	.tn-single-head {
		text-align: right;
	}

	.tn-single-labels,
	.tn-single-meta {
		justify-content: flex-start;
	}

	.tn-shell.tn-single .tn-single-head h1 {
		font-size: 38px !important;
		line-height: 1.45 !important;
	}

	.tn-single-hero {
		margin-bottom: 22px;
		border-radius: 18px;
	}

	.tn-shell.tn-single .tn-single-hero img {
		height: clamp(210px, 58vw, 265px) !important;
		max-height: 265px !important;
		aspect-ratio: auto !important;
		object-fit: cover !important;
	}

	.tn-article-layout {
		gap: 18px;
		margin-top: 25px;
	}

	.tn-summary-box {
		padding: 21px;
	}

	.tn-analysis-box {
		padding: 22px;
	}

	.tn-analysis-box h2 {
		font-size: 23px !important;
	}

	.tn-analysis-box p {
		font-size: 17px !important;
	}

	.tn-shell.tn-single .tn-summary-box p,
	.tn-shell.tn-single .tn-article-content,
	.tn-shell.tn-single .tn-article-content p,
	.tn-shell.tn-single .tn-article-content li {
		font-size: 18px !important;
		line-height: 2.05 !important;
	}

	.tn-shell.tn-single .tn-single-meta {
		font-size: 12.5px !important;
		line-height: 1.8;
	}

	.tn-shell.tn-single .tn-content-image img {
		width: auto !important;
		max-width: 100% !important;
		max-height: 300px !important;
		height: auto !important;
		margin-inline: auto !important;
		object-fit: contain !important;
	}

	.tn-article-content h2 {
		font-size: 25px;
	}

	.tn-article-content h3 {
		font-size: 21px;
	}

	.tn-share-card small {
		display: none;
	}

	.tn-share-card strong {
		font-size: 14px;
	}

	.tn-share-card a,
	.tn-share-card button {
		width: 42px;
		height: 42px;
		border-radius: 12px;
	}

	.tn-share-card svg {
		width: 21px;
		height: 21px;
	}

	.tn-university-box,
	.tn-cta {
		align-items: stretch;
		flex-direction: column;
	}

	.tn-university-actions,
	.tn-cta > a {
		align-self: flex-start;
	}

	.tn-university-actions {
		justify-content: flex-start;
	}

	.tn-cta {
		margin-top: 50px;
		padding: 27px 22px;
	}

	.tn-related {
		margin-top: 56px;
	}
}

@media (max-width: 410px) {
	.tn-shell.tn-single .tn-single-head h1 {
		font-size: 34px !important;
	}

	.tn-share-card {
		align-items: stretch;
		flex-direction: column;
		gap: 9px;
	}

	.tn-share-card > div {
		justify-content: flex-start;
		gap: 5px;
	}

	.tn-relation-links > div {
		align-items: flex-start;
		flex-direction: column;
	}

	.tn-hero-grid {
		grid-template-columns: 1fr;
		grid-template-rows: minmax(350px, auto) repeat(2, minmax(180px, auto));
	}

	.tn-card--side {
		min-height: 185px;
	}

	.tn-card--standard {
		grid-template-columns: 108px minmax(0, 1fr);
	}

	.tn-section-heading h2 {
		font-size: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tn-card,
	.tn-card-media img,
	.tn-read-more span {
		transition: none !important;
	}
}

/* === v1.3.2: clearer Arabic section hierarchy + unmistakable relation links === */
.tn-single .tn-block-title,
.tn-single .tn-analysis-box h3,
.tn-single .tn-relation-primary,
.tn-single .tn-relation-archive,
.tn-single .tn-source-box strong,
.tn-single .tn-source-box a {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
}

.tn-single .tn-block-title {
	display: block;
	margin: 0 0 12px;
	color: #172033;
	font-size: clamp(23px, 2.1vw, 28px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.45;
}

.tn-summary-box .tn-block-title {
	color: #6f5312;
	margin-bottom: 7px;
}

.tn-analysis-box .tn-block-title {
	margin: 0 0 6px;
	color: #1f6d50;
	font-size: clamp(24px, 2.2vw, 29px);
	letter-spacing: 0;
}

.tn-analysis-box h3 {
	margin: 0 0 12px;
	color: #1a2632;
	font-size: clamp(18px, 1.55vw, 21px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.65;
}

.tn-source-box {
	align-items: flex-start;
	padding: 24px 25px;
}

.tn-source-content {
	min-width: 0;
	flex: 1 1 auto;
}

.tn-source-box .tn-block-title {
	margin-bottom: 7px;
	color: #265f4a;
	font-size: clamp(22px, 1.9vw, 26px);
}

.tn-source-box strong {
	color: #1c2934;
	font-size: 17px;
	font-weight: 850;
	line-height: 1.7;
}

.tn-source-box a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 8px;
	padding: 7px 11px;
	border-radius: 9px;
	background: #eaf6ef;
	color: #1f704f;
	font-size: 13px;
	font-weight: 850;
	transition: transform .18s ease, background .18s ease;
}

.tn-source-box a:hover {
	background: #dff1e6;
	transform: translateX(-2px);
}

.tn-relations-box {
	padding: 26px 27px;
}

.tn-relations-box .tn-block-title {
	margin-bottom: 14px;
	color: #222c3a;
	font-size: clamp(23px, 2vw, 27px);
}

.tn-relation-links {
	gap: 11px;
	margin-top: 0;
}

.tn-relation-links > div {
	min-height: 62px;
	padding: 9px 10px 9px 12px;
	border: 1px solid #edf0f4;
	border-radius: 13px;
	background: #f8fafc;
	transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.tn-relation-links > div:hover {
	border-color: #e5d6a8;
	background: #fff;
	box-shadow: 0 7px 24px rgba(26, 35, 48, .055);
}

.tn-relation-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 7px 9px;
	border-radius: 10px;
	color: #182332 !important;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.6;
	transition: color .18s ease, background .18s ease, transform .18s ease;
}

.tn-relation-primary:hover,
.tn-relation-primary:focus-visible {
	background: #fff7e3;
	color: #7f5b0b !important;
	transform: translateX(-2px);
}

.tn-relation-name {
	min-width: 0;
}

.tn-link-cue {
	display: inline-grid;
	width: 27px;
	height: 27px;
	flex: 0 0 27px;
	place-items: center;
	border: 1px solid #ead8a3;
	border-radius: 999px;
	background: #fff8e6;
	color: #8b6410;
	font-size: 15px;
	line-height: 1;
	transition: transform .18s ease;
}

.tn-relation-primary:hover .tn-link-cue {
	transform: translateX(-3px);
}

.tn-relation-archive {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex: 0 0 auto;
	padding: 9px 13px;
	border: 1px solid #ead8a3;
	border-radius: 999px;
	background: #fff8e6;
	color: #805b0d !important;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.35;
	white-space: nowrap;
	transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.tn-relation-archive:hover,
.tn-relation-archive:focus-visible {
	background: #ffefbd;
	box-shadow: 0 5px 15px rgba(140, 100, 17, .10);
	transform: translateX(-2px);
}

.tn-relation-archive > span {
	font-size: 15px;
	transition: transform .18s ease;
}

.tn-relation-archive:hover > span {
	transform: translateX(-3px);
}

.tn-relations-box--majors .tn-link-cue,
.tn-relations-box--majors .tn-relation-archive {
	border-color: #cfe1ed;
	background: #edf7fd;
	color: #256180 !important;
}

.tn-relations-box--majors .tn-relation-primary:hover,
.tn-relations-box--majors .tn-relation-primary:focus-visible {
	background: #edf7fd;
	color: #205f80 !important;
}

.tn-relations-box--articles {
	border-color: #e5ddf0;
	background: #fdfcff;
}

.tn-relations-box--articles .tn-block-title {
	color: #4e3f6c;
}

.tn-relations-box--articles .tn-link-cue,
.tn-relations-box--articles .tn-relation-archive {
	border-color: #ded2eb;
	background: #f5effb;
	color: #60477c !important;
}

.tn-relations-box--articles .tn-relation-primary:hover,
.tn-relations-box--articles .tn-relation-primary:focus-visible {
	background: #f5effb;
	color: #594274 !important;
}

@media (max-width: 720px) {
	.tn-single .tn-block-title,
	.tn-analysis-box .tn-block-title,
	.tn-source-box .tn-block-title,
	.tn-relations-box .tn-block-title {
		font-size: 22px !important;
		line-height: 1.5 !important;
	}

	.tn-analysis-box h3 {
		font-size: 18px !important;
	}

	.tn-relations-box {
		padding: 21px 19px;
	}

	.tn-relation-primary {
		font-size: 16px;
	}

	.tn-relation-archive {
		font-size: 12.5px;
	}
}

@media (max-width: 520px) {
	.tn-relation-links > div {
		align-items: stretch;
		flex-direction: column;
		gap: 7px;
	}

	.tn-relation-primary {
		width: 100%;
		justify-content: space-between;
	}

	.tn-relation-archive {
		align-self: flex-start;
	}
}


/* === v1.3.3: Alatsi-inspired Arabic typography + minimal relation UI === */
/* Google Alatsi does not contain Arabic glyphs. Noto Kufi Arabic is the Arabic
   companion here; Alatsi remains first for Latin/numbers. */
.tn-single .tn-block-title,
.tn-single .tn-analysis-box h3,
.tn-single .tn-relation-primary,
.tn-single .tn-relation-archive,
.tn-single .tn-source-box strong,
.tn-single .tn-source-box a {
	font-family: "Alatsi", "Noto Kufi Arabic", system-ui, sans-serif;
	letter-spacing: 0 !important;
}

/* Section headings: strong, modern and clearly separate from body copy. */
.tn-single .tn-block-title,
.tn-analysis-box .tn-block-title,
.tn-source-box .tn-block-title,
.tn-relations-box .tn-block-title {
	margin: 0 0 15px !important;
	font-size: clamp(25px, 2.15vw, 31px) !important;
	font-weight: 700 !important;
	line-height: 1.55 !important;
}

.tn-analysis-box h3 {
	font-size: clamp(18px, 1.55vw, 21px) !important;
	font-weight: 600 !important;
	line-height: 1.75 !important;
}

/* Relations stay intentionally quiet: no colored pills, nested cards or visual noise. */
.tn-relations-box,
.tn-relations-box--majors,
.tn-relations-box--articles {
	padding: 27px 29px !important;
	border: 1px solid #e7eaee !important;
	border-radius: 18px !important;
	background: #fff !important;
}

.tn-relations-box--articles .tn-block-title,
.tn-relations-box--majors .tn-block-title,
.tn-relations-box .tn-block-title {
	color: #1d2633 !important;
}

.tn-relation-links {
	display: grid !important;
	gap: 0 !important;
	margin-top: 0 !important;
}

.tn-relation-links > div {
	display: flex !important;
	align-items: flex-start !important;
	justify-content: flex-start !important;
	flex-direction: column !important;
	gap: 4px !important;
	min-height: 0 !important;
	padding: 16px 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	text-align: right !important;
}

.tn-relation-links > div + div {
	border-top: 1px solid #edf0f3 !important;
}

.tn-relation-links > div:hover {
	border-color: #edf0f3 !important;
	background: transparent !important;
	box-shadow: none !important;
}

/* The entity name itself is the main link; one subtle arrow is enough. */
.tn-relation-primary {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 8px !important;
	width: auto !important;
	max-width: 100% !important;
	padding: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #182332 !important;
	font-size: clamp(17px, 1.45vw, 20px) !important;
	font-weight: 600 !important;
	line-height: 1.75 !important;
	text-decoration: none !important;
	transform: none !important;
}

.tn-relation-primary:hover,
.tn-relation-primary:focus-visible,
.tn-relations-box--majors .tn-relation-primary:hover,
.tn-relations-box--majors .tn-relation-primary:focus-visible,
.tn-relations-box--articles .tn-relation-primary:hover,
.tn-relations-box--articles .tn-relation-primary:focus-visible {
	background: transparent !important;
	color: #8a6515 !important;
	text-decoration: underline !important;
	text-decoration-thickness: 1px !important;
	text-underline-offset: 5px !important;
	transform: none !important;
}

.tn-link-cue,
.tn-relations-box--majors .tn-link-cue,
.tn-relations-box--articles .tn-link-cue {
	display: inline-block !important;
	width: auto !important;
	height: auto !important;
	flex: 0 0 auto !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #a27a22 !important;
	font-size: 17px !important;
	line-height: 1 !important;
	transform: none !important;
}

.tn-relation-primary:hover .tn-link-cue {
	transform: translateX(-2px) !important;
}

/* Secondary relation action is plain text, not another button/card. */
.tn-relation-archive,
.tn-relations-box--majors .tn-relation-archive,
.tn-relations-box--articles .tn-relation-archive {
	display: inline-flex !important;
	align-items: center !important;
	gap: 5px !important;
	align-self: auto !important;
	flex: 0 0 auto !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #757d88 !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1.65 !important;
	white-space: nowrap !important;
	transform: none !important;
}

.tn-relation-archive > span {
	font-size: 13px !important;
}

.tn-relation-archive:hover,
.tn-relation-archive:focus-visible {
	background: transparent !important;
	box-shadow: none !important;
	color: #8a6515 !important;
	text-decoration: underline !important;
	text-underline-offset: 4px !important;
	transform: none !important;
}

/* Source box gets the same restrained hierarchy. */
.tn-source-box .tn-block-title {
	font-weight: 700 !important;
}

.tn-source-box strong {
	font-size: 16px !important;
	font-weight: 600 !important;
}

.tn-source-box a {
	padding: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	font-size: 13px !important;
	font-weight: 500 !important;
}

.tn-source-box a:hover {
	background: transparent !important;
	text-decoration: underline !important;
	text-underline-offset: 4px !important;
	transform: none !important;
}

@media (max-width: 720px) {
	.tn-single .tn-block-title,
	.tn-analysis-box .tn-block-title,
	.tn-source-box .tn-block-title,
	.tn-relations-box .tn-block-title {
		font-size: 23px !important;
	}

	.tn-relations-box,
	.tn-relations-box--majors,
	.tn-relations-box--articles {
		padding: 22px 20px !important;
	}

	.tn-relation-primary {
		font-size: 17px !important;
	}

	.tn-relation-archive {
		font-size: 12.5px !important;
	}
}

/* === v1.3.4: exact Arabic typography from Tasjil reference === */
/* Body/copy = Noto Naskh Arabic. Headings = existing Adobe Arabic webfont.
   The exact family name seen in DevTools is AdobeArabic-Regular; Adobe Arabic
   is kept as an alias fallback because browsers may expose either family name. */
.tn-single,
.tn-single p,
.tn-single li,
.tn-single time,
.tn-single .tn-single-meta,
.tn-single .tn-breadcrumbs,
.tn-single .tn-news-tags,
.tn-single .tn-relation-archive,
.tn-single .tn-source-box strong,
.tn-single .tn-source-box a,
.tn-single .tn-share-card,
.tn-single .tn-notice,
.tn-single .tn-article-content,
.tn-single .tn-article-content p,
.tn-single .tn-article-content li,
.tn-single .tn-summary-box p,
.tn-single .tn-analysis-box div,
.tn-single .tn-cta p {
	font-family: "Noto Naskh Arabic", serif !important;
	letter-spacing: 0 !important;
}

/* All actual titles/headings use Adobe Arabic, matching the site's reference. */
.tn-single h1,
.tn-single h2,
.tn-single h3,
.tn-single .tn-block-title,
.tn-single .tn-relation-primary,
.tn-single .tn-cta h2,
.tn-related .tn-section-heading h2 {
	font-family: "AdobeArabic-Regular", "Adobe Arabic", "Noto Naskh Arabic", serif !important;
	letter-spacing: 0 !important;
}

/* Section headings stay obvious, but not visually noisy. */
.tn-single .tn-block-title,
.tn-analysis-box .tn-block-title,
.tn-source-box .tn-block-title,
.tn-relations-box .tn-block-title {
	font-size: clamp(29px, 2.35vw, 34px) !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
}

/* Main article title and subheading hierarchy. */
.tn-single .tn-single-head h1 {
	font-weight: 600 !important;
	line-height: 1.35 !important;
}

.tn-analysis-box h3 {
	font-size: clamp(22px, 1.7vw, 26px) !important;
	font-weight: 600 !important;
	line-height: 1.45 !important;
}

/* Related entity names behave like compact titles, while the archive/action stays body text. */
.tn-single .tn-relation-primary {
	font-size: clamp(20px, 1.55vw, 23px) !important;
	font-weight: 600 !important;
	line-height: 1.45 !important;
}

.tn-single .tn-relation-archive {
	font-family: "Noto Naskh Arabic", serif !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	line-height: 1.7 !important;
}

.tn-single .tn-source-box strong {
	font-size: 18px !important;
	font-weight: 600 !important;
}

.tn-single .tn-source-box a {
	font-size: 15px !important;
	font-weight: 500 !important;
}

@media (max-width: 720px) {
	.tn-single .tn-block-title,
	.tn-analysis-box .tn-block-title,
	.tn-source-box .tn-block-title,
	.tn-relations-box .tn-block-title {
		font-size: 28px !important;
	}

	.tn-analysis-box h3 {
		font-size: 22px !important;
	}

	.tn-single .tn-relation-primary {
		font-size: 20px !important;
	}

	.tn-single .tn-relation-archive {
		font-size: 14px !important;
	}
}

/* === v1.3.5: compact, minimal relation cards and clearer section dividers === */
/* Reduce vertical dead space between the editorial blocks without changing content. */
.tn-single .tn-article-layout {
	margin-top: 30px !important;
}

.tn-single .tn-summary-box {
	margin-bottom: 22px !important;
	padding: 21px 24px !important;
}

.tn-single .tn-analysis-box {
	margin-top: 26px !important;
	padding: 24px 26px !important;
}

.tn-single .tn-source-box {
	margin-top: 16px !important;
	padding: 19px 22px !important;
}

.tn-single .tn-relations-box,
.tn-single .tn-relations-box--majors,
.tn-single .tn-relations-box--articles {
	margin-top: 14px !important;
	padding: 20px 22px 21px !important;
	border: 1px solid #e5e8ec !important;
	border-radius: 16px !important;
	background: #fff !important;
	box-shadow: 0 5px 20px rgba(29, 38, 51, .025) !important;
}

/* A fine divider makes each section title immediately legible, without extra decoration. */
.tn-single .tn-block-title,
.tn-single .tn-analysis-box .tn-block-title,
.tn-single .tn-source-box .tn-block-title,
.tn-single .tn-relations-box .tn-block-title {
	position: relative !important;
	margin: 0 0 14px !important;
	padding: 0 0 10px !important;
	border-bottom: 1px solid #e7eaee !important;
}

.tn-single .tn-block-title::after,
.tn-single .tn-analysis-box .tn-block-title::after,
.tn-single .tn-source-box .tn-block-title::after,
.tn-single .tn-relations-box .tn-block-title::after {
	content: "" !important;
	position: absolute !important;
	right: 0 !important;
	bottom: -1px !important;
	width: 58px !important;
	height: 2px !important;
	border-radius: 99px !important;
	background: #b58a2b !important;
}

.tn-single .tn-analysis-box .tn-block-title::after,
.tn-single .tn-source-box .tn-block-title::after {
	background: #2f7d61 !important;
}

/* Compact relation collection: two neat cards per row on desktop, one on phone. */
.tn-single .tn-relation-links {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 10px !important;
	margin: 0 !important;
}

.tn-single .tn-relation-links > div {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	gap: 9px !important;
	min-height: 54px !important;
	padding: 10px 12px !important;
	border: 1px solid #e9ecef !important;
	border-radius: 12px !important;
	background: #fbfcfd !important;
	box-shadow: none !important;
	text-align: right !important;
	transition: border-color .18s ease, background .18s ease, box-shadow .18s ease !important;
}

.tn-single .tn-relation-links > div + div {
	border-top: 1px solid #e9ecef !important;
}

.tn-single .tn-relation-links > div:hover {
	border-color: #ddd5bd !important;
	background: #fff !important;
	box-shadow: 0 5px 16px rgba(29, 38, 51, .045) !important;
}

/* Name and its related-news action stay together on the same visual line. */
.tn-single .tn-relation-primary {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	max-width: 100% !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #202938 !important;
	font-size: clamp(18px, 1.35vw, 21px) !important;
	font-weight: 600 !important;
	line-height: 1.45 !important;
	text-decoration: none !important;
}

.tn-single .tn-relation-name {
	min-width: 0 !important;
	overflow-wrap: anywhere !important;
}

.tn-single .tn-link-cue {
	display: inline-block !important;
	width: auto !important;
	height: auto !important;
	flex: 0 0 auto !important;
	border: 0 !important;
	background: transparent !important;
	color: #9a7728 !important;
	font-family: "Noto Naskh Arabic", serif !important;
	font-size: 15px !important;
	line-height: 1 !important;
}

/* Compact outlined action: visible as clickable, but deliberately not a loud button. */
.tn-single .tn-relation-archive,
.tn-single .tn-relations-box--majors .tn-relation-archive,
.tn-single .tn-relations-box--articles .tn-relation-archive {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0 !important;
	flex: 0 0 auto !important;
	margin: 0 !important;
	padding: 3px 9px 4px !important;
	border: 1px solid #e2e5e9 !important;
	border-radius: 999px !important;
	background: #fff !important;
	box-shadow: none !important;
	color: #66707d !important;
	font-family: "Noto Naskh Arabic", serif !important;
	font-size: 13.5px !important;
	font-weight: 500 !important;
	line-height: 1.45 !important;
	white-space: nowrap !important;
	text-decoration: none !important;
}

/* The second arrow was visually redundant next to the entity arrow. */
.tn-single .tn-relation-archive > span {
	display: none !important;
}

.tn-single .tn-relation-archive:hover,
.tn-single .tn-relation-archive:focus-visible {
	border-color: #d3c59d !important;
	background: #fffaf0 !important;
	color: #7d601c !important;
	text-decoration: none !important;
}

/* Keep the three relation types visually consistent; content tells them apart. */
.tn-single .tn-relations-box--majors,
.tn-single .tn-relations-box--articles {
	border-color: #e5e8ec !important;
	background: #fff !important;
}

.tn-single .tn-relations-box--majors .tn-block-title,
.tn-single .tn-relations-box--articles .tn-block-title {
	color: #1d2633 !important;
}

/* Source is compact too, so it does not consume a full large panel. */
.tn-single .tn-source-icon {
	width: 36px !important;
	height: 36px !important;
	flex-basis: 36px !important;
}

.tn-single .tn-source-box .tn-block-title {
	margin-bottom: 8px !important;
}

.tn-single .tn-source-box a {
	margin-top: 4px !important;
}

@media (max-width: 820px) {
	.tn-single .tn-relation-links {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 720px) {
	.tn-single .tn-article-layout {
		margin-top: 22px !important;
	}

	.tn-single .tn-summary-box,
	.tn-single .tn-analysis-box,
	.tn-single .tn-source-box,
	.tn-single .tn-relations-box,
	.tn-single .tn-relations-box--majors,
	.tn-single .tn-relations-box--articles {
		padding: 18px !important;
	}

	.tn-single .tn-relation-links > div {
		min-height: 0 !important;
		padding: 9px 10px !important;
		gap: 7px !important;
	}

	.tn-single .tn-relation-primary {
		font-size: 19px !important;
	}

	.tn-single .tn-relation-archive {
		font-size: 13px !important;
		padding: 3px 8px 4px !important;
	}
}


/* === v1.3.6: professional single-news status/category badges ===
   Keep these labels prominent enough to scan before the headline, while still
   clearly subordinate to the article title. Archive/card badges are untouched. */
.tn-single .tn-single-labels {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-wrap: wrap !important;
	gap: 9px !important;
	margin: 0 0 17px !important;
	padding: 0 !important;
}

.tn-single .tn-single-labels .tn-badge {
	position: static !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 40px !important;
	margin: 0 !important;
	padding: 7px 18px 8px !important;
	border: 1px solid #dfd4b7 !important;
	border-radius: 999px !important;
	background: #fffaf0 !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	color: #7b5d1c !important;
	font-family: "Noto Naskh Arabic", serif !important;
	font-size: 16.5px !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	letter-spacing: 0 !important;
	white-space: nowrap !important;
}

/* Breaking is the strongest label, but still a badge rather than a CTA button. */
.tn-single .tn-single-labels .tn-badge--breaking {
	min-height: 42px !important;
	padding-inline: 20px !important;
	border-color: #cf3037 !important;
	background: #cf3037 !important;
	color: #fff !important;
	font-family: "AdobeArabic-Regular", "Adobe Arabic", "Noto Naskh Arabic", serif !important;
	font-size: 18px !important;
	font-weight: 600 !important;
	box-shadow: 0 3px 10px rgba(207, 48, 55, .10) !important;
}

/* Category/brand label: quieter, refined and clearly secondary to Breaking. */
.tn-single .tn-single-labels .tn-badge--gold {
	border-color: #dfd4b7 !important;
	background: #fffaf0 !important;
	color: #7b5d1c !important;
}

/* Updated is informational rather than urgent. */
.tn-single .tn-single-labels .tn-badge--updated {
	border-color: #cfe2d9 !important;
	background: #f2f8f5 !important;
	color: #28654f !important;
	font-size: 15.5px !important;
}

@media (max-width: 720px) {
	.tn-single .tn-single-labels {
		gap: 7px !important;
		margin-bottom: 14px !important;
	}

	.tn-single .tn-single-labels .tn-badge {
		min-height: 37px !important;
		padding: 6px 15px 7px !important;
		font-size: 15.5px !important;
	}

	.tn-single .tn-single-labels .tn-badge--breaking {
		min-height: 39px !important;
		padding-inline: 17px !important;
		font-size: 17px !important;
	}

	.tn-single .tn-single-labels .tn-badge--updated {
		font-size: 14.5px !important;
	}
}
