/* ==========================================================================
   Baby Name Hero Ã¢â‚¬â€ 100% boutique screenshot clone
   Navy #102B5B Ã‚Â· Magenta #E91E63 Ã‚Â· Soft bg #FFF8F8
   ========================================================================== */

.bnh-wrap {
	--bn-navy: #102b5b;
	--bn-pink: #e91e63;
	/* --bn-bg: #fff8f8; */
	--bn-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--bn-sans: "Poppins", "Helvetica Neue", Arial, sans-serif;
	box-sizing: border-box;
	width: 100vw;
	max-width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 10px;
	font-family: var(--bn-sans);
	color: var(--bn-navy);
	background: var(--bn-bg);
	overflow: hidden;
	text-align: left;
}

.bnh-wrap *,
.bnh-wrap *::before,
.bnh-wrap *::after {
	box-sizing: border-box;
}

.bnh-inner {
	position: relative;
	z-index: 2;
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 40px 20px;
	align-items: center;
}

.bnh-copy {
	max-width: 520px;
}

.bnh-title {
	margin: 0 0 24px;
	font-family: var(--bn-serif);
	font-size: clamp(2.5rem, 4.6vw, 4.6rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--bn-navy);
	animation: bnh-fade-up 0.7s ease both;
}

.bnh-title__plain {
	color: var(--bn-navy);
}

.bnh-title__accent {
	color: var(--bn-pink);
}

.bnh-desc {
	margin: 0;
	max-width: 28em;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.7;
	color: var(--bn-navy);
	animation: bnh-fade-up 0.7s ease 0.1s both;
}

.bnh-figure {
	margin: 0;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	/* aspect-ratio: 5 / 4; */
	background: #f4ebe4;
	/* box-shadow: 0 18px 48px rgba(16, 43, 91, 0.08); */
	animation: bnh-fade-up 0.85s ease 0.08s both;
}

.bnh-figure__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

@keyframes bnh-fade-up {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 960px) {
	.bnh-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.bnh-copy {
		max-width: none;
		text-align: center;
	}

	.bnh-desc {
		margin-left: auto;
		margin-right: auto;
	}

	.bnh-figure {
		max-width: 580px;
		margin: 0 auto;
		border-radius: 36px;
	}
}

@media (max-width: 560px) {
	.bnh-wrap {
		padding: 32px 16px 44px;
	}

	.bnh-title {
		font-size: 2.05rem;
	}

	.bnh-desc {
		font-size: 15px;
	}

	.bnh-figure {
		border-radius: 28px;
	}
}