.ntsolo-share-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
}

.ntsolo-share-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid #cbd9e8;
	border-radius: 9px;
	background: #fff;
	color: #0c5ca8;
	font: 700 13px/1.2 "Hanken Grotesk", Arial, sans-serif;
	text-decoration: none;
	cursor: pointer;
	transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.ntsolo-share-button:hover,
.ntsolo-share-button:focus-visible {
	border-color: #0c5ca8;
	background: #eef5ff;
	color: #084b8a;
	transform: translateY(-1px);
}

.ntsolo-share-button--primary {
	border-color: #0c5ca8;
	background: #0c5ca8;
	color: #fff;
}

.ntsolo-share-button--primary:hover,
.ntsolo-share-button--primary:focus-visible {
	background: #084b8a;
	color: #fff;
}

.ntsolo-share-button .material-symbols-outlined {
	font-size: 18px;
}

.ntsolo-share-status {
	min-height: 18px;
	color: #067647;
	font-size: 12px;
	font-weight: 700;
	opacity: 0;
	transition: opacity .18s ease;
}

.ntsolo-share-status.is-visible {
	opacity: 1;
}

.ntsolo-article {
	max-width: 900px;
	margin: 0 auto;
	padding: 44px 20px 80px;
}

.ntsolo-article__header {
	margin-bottom: 28px;
}

.ntsolo-article__eyebrow {
	display: block;
	margin-bottom: 10px;
	color: #0c5ca8;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ntsolo-article__header h1 {
	max-width: 820px;
	margin: 0 0 12px;
	color: #102a4c;
	font-size: clamp(30px, 5vw, 48px);
	line-height: 1.12;
}

.ntsolo-article__meta {
	margin: 0;
	color: #667085;
	font-size: 14px;
}

.ntsolo-article__featured {
	margin: 0 0 30px;
	border-radius: 16px;
	box-shadow: 0 12px 30px rgba(16, 42, 76, .12);
	overflow: hidden;
}

.ntsolo-article__featured img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: cover;
}

.ntsolo-article__content {
	color: #344054;
	font-size: 17px;
	line-height: 1.75;
}

.ntsolo-article__content h2,
.ntsolo-article__content h3,
.ntsolo-article__content h4 {
	margin: 30px 0 10px;
	color: #102a4c;
	line-height: 1.25;
}

.ntsolo-article__content p,
.ntsolo-article__content ul,
.ntsolo-article__content ol {
	margin: 0 0 18px;
}

.ntsolo-article__content img {
	max-width: 100%;
	height: auto;
}

@media (max-width: 600px) {
	.ntsolo-share-group {
		align-items: stretch;
	}

	.ntsolo-share-button {
		flex: 1 1 160px;
		min-height: 44px;
	}

	.ntsolo-share-status {
		flex-basis: 100%;
	}

	.ntsolo-article {
		padding: 28px 14px 56px;
	}

	.ntsolo-article__content {
		font-size: 16px;
	}
}
