.baby-share {
	width: min(1180px, calc(100% - 32px));
	margin: clamp(24px, 5vw, 56px) auto;
	padding: clamp(20px, 4vw, 32px);
	border: 1px solid rgba(51, 111, 158, .18);
	border-radius: 26px;
	background: linear-gradient(135deg, rgba(221, 239, 255, .72), rgba(248, 220, 231, .58));
	box-shadow: 0 16px 44px rgba(36, 50, 71, .08);
	color: #243247;
}

.baby-share__heading {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.baby-share__eyebrow {
	margin: 0;
	color: #336f9e;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.baby-share h2 {
	margin: 0;
	font: 700 clamp(1.35rem, 3vw, 1.8rem)/1.15 Georgia, "Times New Roman", serif;
	color: #243247;
}

.baby-share__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.baby-share__button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin: 0;
	padding: 10px 17px;
	border: 1px solid rgba(51, 111, 158, .28);
	border-radius: 999px;
	background: rgba(255, 255, 255, .9);
	color: #243247;
	font: 700 .95rem/1.2 Inter, system-ui, sans-serif;
	text-decoration: none;
	cursor: pointer;
}

.baby-share__button:hover,
.baby-share__button:focus-visible {
	border-color: #336f9e;
	background: #fff;
	color: #243247;
	transform: translateY(-1px);
}

.baby-share__button--primary {
	border-color: #336f9e;
	background: #336f9e;
	color: #fff;
}

.baby-share__button--primary:hover,
.baby-share__button--primary:focus-visible {
	background: #24597f;
	color: #fff;
}

.baby-share__button:focus-visible {
	outline: 3px solid rgba(51, 111, 158, .3);
	outline-offset: 3px;
}

.baby-share__note,
.baby-share__status {
	margin: 14px 0 0;
	color: #5c6878;
	font-size: .87rem;
}

.baby-share__status:empty {
	display: none;
}

@media (max-width: 520px) {
	.baby-share {
		width: calc(100% - 24px);
		padding: 18px;
		border-radius: 22px;
	}

	.baby-share__heading {
		display: block;
	}

	.baby-share__eyebrow {
		margin-bottom: 5px;
	}

	.baby-share__actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.baby-share__button {
		width: 100%;
	}

	.baby-share__button--primary {
		grid-column: 1 / -1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.baby-share__button { transform: none !important; }
}
