.news-share {
	width: 100%;
	padding: 30px 0;
	font-family: "Monserrat", Sans-serif;
}

.news-share__inner {
	max-width: 840px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.news-share__tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #8a8a8a;
}

.news-share__tags-label {
	color: #2F2F2F;
}

.news-share__tag {
	color: #8a8a8a;
	text-decoration: none;
}

.news-share__tag:not(:last-child)::after {
	content: ",";
}

.news-share__tag:hover {
	color: #2F2F2F;
}

.news-share__social {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
}

.news-share__social-label {
	color: #2F2F2F;
}

.news-share__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #f0f0f0;
	color: #2F2F2F;
	transition: background 0.25s ease, color 0.25s ease;
}

.news-share__link svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.news-share__link:hover {
	background: #2F2F2F;
	color: #FFFFFF;
}

@media (max-width: 600px) {
	.news-share__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}
