/**
 * Single Share
 * -------------------------------------------------------
 * Componente de compartilhamento do artigo.
 *
 * @package Valore_RH_Core
 * @since   1.0.0
 */

.vr-single-share {
	padding: 0 20px 64px;
	background: #ffffff;
}

.vr-single-share__container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.vr-single-share__content {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	padding-top: 38px;
	border-top: 1px solid #e5e7eb;
	font-family: "Poppins", sans-serif;
}

.vr-single-share__heading {
	margin-bottom: 26px;
}

.vr-single-share__eyebrow {
	display: block;
	margin-bottom: 7px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #d97d0e;
}

.vr-single-share__title {
	margin: 0 0 8px;
	font-family: "Poppins", sans-serif;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.3;
	color: #021627;
}

.vr-single-share__description {
	max-width: 620px;
	margin: 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	color: #6b7280;
}

.vr-single-share__actions {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
}

.vr-single-share__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-width: 0;
	min-height: 50px;
	padding: 11px 10px;
	background: #ffffff;
	border: 1px solid #dfe4ea;
	border-radius: 10px;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	white-space: nowrap;
	color: #25303b;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(2, 22, 39, 0.05);
	transition:
		transform 0.2s ease,
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.vr-single-share__button svg {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
}

.vr-single-share__button:hover {
	transform: translateY(-2px);
	text-decoration: none;
	box-shadow: 0 9px 22px rgba(2, 22, 39, 0.1);
}

.vr-single-share__button:focus-visible {
	outline: 3px solid rgba(247, 164, 55, 0.35);
	outline-offset: 3px;
}

.vr-single-share__button--whatsapp:hover {
	background: #eefcf4;
	border-color: #25d366;
	color: #128c4a;
}

.vr-single-share__button--linkedin:hover {
	background: #eef7fc;
	border-color: #0a66c2;
	color: #0a66c2;
}

.vr-single-share__button--facebook:hover {
	background: #f0f5ff;
	border-color: #1877f2;
	color: #1877f2;
}

.vr-single-share__button--x:hover {
	background: #021627;
	border-color: #021627;
	color: #ffffff;
}

.vr-single-share__button--copy {
	color: #25303b;
}

.vr-single-share__button--copy:hover {
	background: #fff8ed;
	border-color: #f7a437;
	color: #a55c06;
}

.vr-single-share__button--copy.is-copied {
	background: #ecfdf3;
	border-color: #22c55e;
	color: #15803d;
	box-shadow: 0 8px 22px rgba(34, 197, 94, 0.16);
}

.vr-single-share__feedback {
	min-height: 20px;
	margin: 12px 0 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
	color: #15803d;
}

@media (max-width: 900px) {
	.vr-single-share__actions {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.vr-single-share__button {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.vr-single-share {
		padding: 0 20px 54px;
	}

	.vr-single-share__content {
		padding-top: 32px;
	}

	.vr-single-share__title {
		font-size: 22px;
	}

	.vr-single-share__actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.vr-single-share {
		padding-right: 16px;
		padding-bottom: 48px;
		padding-left: 16px;
	}

	.vr-single-share__heading {
		margin-bottom: 22px;
	}

	.vr-single-share__actions {
		grid-template-columns: 1fr;
	}

	.vr-single-share__button {
		justify-content: flex-start;
		padding-right: 18px;
		padding-left: 18px;
	}

	.vr-single-share__feedback {
		margin-top: 10px;
	}
}