.tnxtp-navigation {
	--tnxtp-border: #dddddd;
	--tnxtp-background: #ffffff;
	--tnxtp-text: #222222;
	--tnxtp-accent: #e74c3c;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.25rem;
	margin: 2rem auto;
	width: 100%;
}

.tnxtp-navigation *,
.tnxtp-navigation *::before,
.tnxtp-navigation *::after {
	box-sizing: border-box;
}

.tnxtp-display-inline.tnxtp-boxes-sides {
	grid-template-columns: repeat(2, minmax(0, 18.4375rem));
	justify-content: space-between;
}

.tnxtp-slot {
	align-items: center;
	background: var(--tnxtp-background);
	border: 1px solid var(--tnxtp-border);
	color: var(--tnxtp-text);
	display: flex;
	gap: 0.85rem;
	min-width: 0;
	padding: 1rem;
	text-decoration: none;
	transition: color .3s ease, border-color .3s ease;
}

.tnxtp-slot:hover,
.tnxtp-slot:active,
.tnxtp-slot:focus,
.tnxtp-slot:focus-visible {
	border-color: var(--tnxtp-accent);
	color: var(--tnxtp-accent);
}

.tnxtp-left {
	grid-column: 1;
	justify-content: flex-start;
	text-align: left;
}

.tnxtp-right {
	grid-column: 2;
	justify-content: flex-end;
	text-align: right;
}

.tnxtp-copy {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.tnxtp-label {
	font-size: .78em;
	letter-spacing: .04em;
	opacity: .72;
	text-transform: uppercase;
}

.tnxtp-title {
	display: block;
	font-size: 1em;
	font-weight: 600;
	line-height: 1.35;
	margin-top: .25rem;
	overflow-wrap: anywhere;
}

.tnxtp-layout-3 .tnxtp-slot {
	align-items: stretch;
	gap: 0;
	min-height: 136px;
	overflow: hidden;
	padding: 0;
}

.tnxtp-layout-3 .tnxtp-copy {
	padding: 1rem;
}

.tnxtp-layout-3 .tnxtp-image-wrap {
	align-self: stretch;
	flex: 0 0 136px;
	min-height: 136px;
	overflow: hidden;
}

.tnxtp-layout-3 .tnxtp-thumbnail {
	display: block;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	width: 100% !important;
}

@media (max-width: 700px) {
	.tnxtp-navigation {
		gap: .65rem;
	}

	.tnxtp-slot {
		padding: .75rem;
	}

	.tnxtp-layout-3 .tnxtp-slot {
		padding: 0;
	}
}

@media (max-width: 430px) {
	.tnxtp-display-inline,
	.tnxtp-display-inline.tnxtp-boxes-sides {
		grid-template-columns: 1fr;
	}

	.tnxtp-display-inline .tnxtp-left,
	.tnxtp-display-inline .tnxtp-right {
		grid-column: 1;
	}
}
