* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
	color: hsl(120, 15%, 14%);
	background: #c4ff75;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
}

.wrap {
	width: min(1000px, 100%);
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	align-items: center;
}

.lead {
	line-height: 1.6;
	color: #4f5a4d;
}

.visual {
	margin: 0;
	background: #ffffff;
	border-radius: 18px;
	padding: 12px;
}

.hero-image {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}

figcaption {
	font-size: 0.9rem;
	color: #4f5a4d;
}
