/* Typography lab UI — admin-only page */
.tnt-typography-lab-root {
	max-width: 1400px;
	margin: 0 auto;
	padding: 2rem 1.5rem 4rem;
	font-family: system-ui, sans-serif;
	color: #1b1b1b;
}

.tnt-typo-lab-layout {
	display: grid;
	grid-template-columns: minmax(320px, 420px) 1fr;
	gap: 1.5rem;
	align-items: start;
}

@media (max-width: 960px) {
	.tnt-typo-lab-layout {
		grid-template-columns: 1fr;
	}
}

.tnt-typo-lab-panel {
	background: #f7f7f7;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1rem 1.25rem;
}

.tnt-typo-lab-panel h2 {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.tnt-typo-lab-panel + .tnt-typo-lab-panel {
	margin-top: 1rem;
}

.tnt-typo-lab-preview-frame {
	width: 100%;
	min-height: 70vh;
	border: 1px solid #ccc;
	border-radius: 8px;
	background: #fff;
}

.tnt-typo-lab-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.tnt-typo-lab-actions button {
	cursor: pointer;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	border: 1px solid #665c51;
	background: #e6b75d;
	font-weight: 600;
	font-size: 13px;
}

.tnt-typo-lab-actions button.secondary {
	background: #fff;
}

.tnt-typo-lab-status {
	margin-top: 0.75rem;
	font-size: 13px;
	min-height: 1.25em;
}

.tnt-typo-lab-gate {
	max-width: 640px;
	margin: 2rem auto;
	padding: 1.25rem 1.5rem;
	background: #f7f7f7;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-family: system-ui, sans-serif;
}

.tnt-typo-lab-gate__link {
	display: inline-block;
	margin-top: 0.5rem;
	padding: 0.5rem 1rem;
	background: #e6b75d;
	color: #1b1b1b;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
}

.tnt-typo-lab-gate__link:hover,
.tnt-typo-lab-gate__link:focus-visible {
	background: #f7be68;
	color: #1b1b1b;
}

.tnt-typo-lab-status.is-error {
	color: #b00020;
}

.tnt-typo-lab-status.is-ok {
	color: #0d6b3a;
}

.tnt-typo-lab-field {
	margin-bottom: 0.65rem;
}

.tnt-typo-lab-field label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 0.2rem;
}

.tnt-typo-lab-field select,
.tnt-typo-lab-field input {
	width: 100%;
	padding: 0.35rem 0.5rem;
	font-size: 14px;
}

.tnt-typo-lab-sizes-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
}

.tnt-typo-lab-sizes-table th,
.tnt-typo-lab-sizes-table td {
	border: 1px solid #ddd;
	padding: 0.35rem;
	text-align: left;
}

.tnt-typo-lab-sizes-table input {
	width: 100%;
	font-size: 12px;
}
