* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1a1a2e;
	font-family: 'Georgia', 'Times New Roman', serif;
	padding: 1.5rem;
}

.card {
	background: #fffef8;
	border-radius: 4px;
	box-shadow:
		0 1px 3px rgba(0, 0, 0, 0.12),
		0 4px 12px rgba(0, 0, 0, 0.08);
	max-width: 300px;
	width: 100%;
	aspect-ratio: 2 / 3.5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-inner {
	text-align: center;
	padding: 2rem;
}

.name {
	font-size: 1.6rem;
	font-weight: normal;
	letter-spacing: 0.08em;
	color: #2c2c2c;
}

.tagline {
	font-style: italic;
	color: #888;
	font-size: 0.8rem;
	margin-top: 0.35rem;
	letter-spacing: 0.02em;
}

.divider {
	width: 2.5rem;
	height: 1px;
	background: #ccc;
	margin: 1.2rem auto;
}

.people {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	margin-bottom: 1rem;
}

.person {
	font-size: 1rem;
	color: #444;
	letter-spacing: 0.05em;
}

.amp {
	font-size: 0.85rem;
	color: #aaa;
}

.email {
	font-family: 'Courier New', monospace;
	font-size: 0.78rem;
	color: #666;
	text-decoration: none;
	letter-spacing: 0.03em;
}

.email:hover {
	color: #2c2c2c;
}

@media (min-width: 480px) {
	.card {
		max-width: 420px;
		aspect-ratio: 3.5 / 2;
	}
}
