/*
 * TR Immigration - logo plate
 *
 * The plate is now transparent globally, so the lockup sits directly on the
 * white header and the white footer with no rectangle behind it.
 */

.tr-logo-plate {
	background-color: transparent;
	padding: 0;
}

.tr-logo-plate-img {
	width: auto;
	height: auto;
	max-height: var(--logo-h);
}

.tr-site-footer .tr-logo-plate-img { max-height: var(--logo-h-footer); }

/*
 * The footer is dark slate, and the lockup artwork is dark ink, so the footer
 * keeps a light plate behind it. The header, still light, does not.
 */
.tr-site-footer .tr-logo-plate {
	display: inline-block;
	background-color: var(--white);
	padding: var(--sp-2) var(--sp-3);
	border-radius: var(--r-1);
}

@media (max-width: 921px) {
	.tr-logo-plate-img { max-height: var(--logo-h-t); }
}

@media (max-width: 544px) {
	.tr-logo-plate-img { max-height: var(--logo-h-m); }
	.tr-site-footer .tr-logo-plate-img { max-height: var(--logo-h-footer-m); }
}
