/* Портрет */

	.author-card { 
	width: 100%; 
	max-width: 400px; 
	margin: 0 auto; 
	text-align: center; 
}
	.img-wrapper { 
	width: 100%; 
	aspect-ratio: 1 / 1; 
	overflow: hidden; 
	border-radius: 12px; 
	background: #eee; 
	box-shadow: 0 6px 16px rgba(0,0,0,0.30); 
}
	.img-wrapper img { 
	width: 100%; 
	height: 100%; 
	object-fit: cover; 
	display: block; 
}
	.author-name { 
	margin-top: 18px; 
	color: #8b0000; 
	font-size: 1.4rem; 
	font-weight: 700; 
}
	.author-bio { 
	margin-top: 8px; 
	color: #555; 
	max-width: 560px; 
	margin: 0 auto; 
}