.article-share {
}

.article-share__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.article-share__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 7px;
	border: 0;
	border-radius: 4px;
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.2s, transform 0.2s;
}

.article-share__button:hover {
	color: #fff;
	opacity: 0.85;
	transform: translateY(-1px);
}

.article-share__button:focus-visible {
	outline: 3px solid #ffbf47;
	outline-offset: 2px;
}

.article-share__button--vk {
	background: #0077ff;
}

.article-share__button--ok {
	background: #ee8208;
}

.article-share__button--telegram {
	background: #229ed9;
}

.article-share__button--x {
	background: #000;
}

.article-share__button--mailru {
	background: #005ff9;
}

.article-share__button--copy {
	background: #59636e;
}

.article-share__button--more {
	background: #DDD;
	color: #999;
}

.article-share__status {
	display: block;
	min-height: 20px;
	margin-top: 8px;
	font-size: 13px;
	color: #247c45;
}

@media (max-width: 480px) {
	.article-share__button {
		flex-grow: 1;
	}
}