@charset "UTF-8";

.share-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1rem;
}

.share-box__label {
	color: #203a1d;
	font-size: 0.95rem;
	font-weight: 600;
	white-space: nowrap;
}

.share-box__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.share-box__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(32, 58, 29, 0.18);
	border-radius: 999px;
	background: #fff;
	color: #203a1d;
	font-size: 1.05rem;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.share-box__btn:hover,
.share-box__btn:focus-visible {
	border-color: #79ad4b;
	background: #f4f8f1;
	color: #203a1d;
	outline: none;
}

.share-box__btn:active {
	transform: scale(0.96);
}

.share-box__btn--facebook:hover,
.share-box__btn--facebook:focus-visible {
	color: #1877f2;
}

.share-box__btn--pinterest:hover,
.share-box__btn--pinterest:focus-visible {
	color: #bd081c;
}

.share-box__btn--whatsapp:hover,
.share-box__btn--whatsapp:focus-visible {
	color: #25d366;
}

.share-box__btn--email:hover,
.share-box__btn--email:focus-visible {
	color: #203a1d;
}

.share-box__btn--copy.is-copied {
	border-color: #79ad4b;
	background: #eef6e8;
	color: #203a1d;
}

.share-box--sidebar {
	margin-top: 0.35rem;
}

.faq-detail-share .share-box {
	margin: 0;
}

@media (max-width: 575.98px) {
	.share-box {
		align-items: flex-start;
	}

	.share-box__actions {
		gap: 0.4rem;
	}

	.share-box__btn {
		width: 2.35rem;
		height: 2.35rem;
		font-size: 1rem;
	}
}
