/* packages/spice-branding/assets/styles/page-sections/branding-typography.css */
.typography-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.typography-card {
	border-left: 4px solid var(--border-color); /* Thematic border color */
	padding: 1rem 1.5rem;
	margin: 1.5rem 0;
	background-color: var(--background-color); /* Respects dark/light theme */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Matches color-swatch */
	border: 1px solid var(--border-color);
}

.typography-card header {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	color: var(--text-color); /* Variable text color */
	opacity: 0.7; /* Soften the label color without fixed hex */
	margin-bottom: 0.5rem;
	font-family: var(--font-body); /* Standard body font */
}

/* Sample text and font name styles */
.typography-card p {
	color: var(--text-color); /* Dynamically switches */
	margin: 0;
}

@media (min-width: 768px) {
	.typography-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
