.moark-story-share {
	--moark-share-navy: #06133f;
	--moark-share-red: #c40000;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 12px;
	width: 100%;
	font-family: inherit;
}

.moark-story-share__label {
	color: var(--moark-share-navy);
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.moark-story-share__buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.moark-story-share__button {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 36px;
	margin: 0;
	padding: 7px 11px;
	border: 1px solid #cfd4df;
	border-radius: 4px;
	background: #fff;
	color: var(--moark-share-navy);
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}

.moark-story-share__button:hover,
.moark-story-share__button:focus-visible {
	border-color: var(--moark-share-red);
	background: #fff7f7;
	color: var(--moark-share-red);
	text-decoration: none;
}

.moark-story-share__button:focus-visible {
	outline: 2px solid var(--moark-share-navy);
	outline-offset: 2px;
}

.moark-story-share__button svg {
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
	fill: currentColor;
}

.moark-story-share__status {
	min-width: 1px;
	color: #2d5f35;
	font-size: 12px;
	font-weight: 700;
}

.moark-story-share--compact .moark-story-share__label {
	font-size: 13px;
}

.moark-story-share--compact .moark-story-share__button {
	min-width: 36px;
	padding: 7px 9px;
}

.moark-story-share--compact .moark-story-share__button > span {
	display: none;
}

@media (max-width: 767px) {
	.moark-story-share {
		align-items: flex-start;
	}

	.moark-story-share__label {
		width: 100%;
	}

	.moark-story-share__buttons {
		width: 100%;
	}

	.moark-story-share__button {
		flex: 1 1 auto;
		min-width: 44px;
	}
}

@media (max-width: 430px) {
	.moark-story-share__button span {
		display: none;
	}

	.moark-story-share__button {
		flex: 0 0 40px;
		width: 40px;
		padding: 8px;
	}
}
