/*
 * TR Immigration - cross link blocks on articles and library entries
 *
 * A quiet aside, not a promotional module: hairline rules, the same type
 * scale as the article, and no boxes. It should read as part of the page a
 * reader is already in.
 */

.tr-xl {
	font-family: var(--font-body);
	margin-block: var(--sp-7) 0;
	padding-block-start: var(--sp-5);
	border-block-start: var(--edge) solid var(--rule);
}

.tr-xl-head {
	margin: 0 0 var(--sp-2);
	font-size: var(--fs-tag);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: var(--lh-fine);
	color: var(--ink);
}

.tr-xl-note {
	margin: 0 0 var(--sp-4);
	font-size: var(--fs-note);
	line-height: var(--lh-body);
	color: var(--ink-soft);
}

.tr-xl-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tr-xl-item {
	padding-block: var(--sp-3);
	border-block-start: var(--hair) solid var(--rule);
}

.tr-xl-link {
	display: block;
	font-family: var(--font-head);
	font-size: var(--fs-h4);
	font-weight: 500;
	line-height: var(--lh-head);
	color: var(--ink);
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-color: var(--rule);
	transition: text-decoration-color 0.18s ease;
}

.tr-xl-link:hover,
.tr-xl-link:focus-visible {
	text-decoration-color: var(--ink);
}

.tr-xl-sub {
	display: block;
	margin-block-start: var(--sp-2);
	font-size: var(--fs-note);
	line-height: var(--lh-body);
	color: var(--ink-soft);
	max-width: 60ch;
}

.tr-xl-all {
	margin: var(--sp-4) 0 0;
	font-size: var(--fs-note);
	line-height: var(--lh-fine);
}

.tr-xl-all a {
	color: var(--gold-deep);
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.tr-xl-link { transition: none; }
}

@media (max-width: 700px) {
	.tr-xl { margin-block-start: var(--sp-6); }
	.tr-xl-link { font-size: var(--fs-base); }
}
