/* Base layout helpers */
.site-main {
	min-height: 60vh;
}

.hero-section {
	padding-top: var(--wp--preset--spacing--xl);
	padding-bottom: var(--wp--preset--spacing--lg);
}

.profile-cards {
	display: grid;
	gap: var(--wp--preset--spacing--md);
}

@media (min-width: 768px) {
	.profile-cards {
		grid-template-columns: 1fr 1fr;
	}
}

.profile-card {
	background: var(--wp--preset--color--surface);
	border-radius: 12px;
	padding: var(--wp--preset--spacing--md);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-card h2 {
	margin-top: 0;
}

.profile-card--dev h2 {
	color: var(--wp--preset--color--accent-alt);
}

.profile-card--music h2 {
	color: var(--wp--preset--color--accent);
}
