/**
 * Single Author
 * -------------------------------------------------------
 * Card do autor exibido após o conteúdo do artigo.
 *
 * @package Valore_RH_Core
 * @since   1.0.0
 */

.vr-single-author {
	padding: 0 20px 80px;
	background: #ffffff;
}

.vr-single-author__container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.vr-single-author__card {
	display: flex;
	align-items: center;
	gap: 30px;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	padding: 32px;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	box-shadow: 0 18px 48px rgba(2, 22, 39, 0.08);
}

.vr-single-author__media {
	flex: 0 0 120px;
	width: 120px;
	height: 120px;
}

.vr-single-author__avatar {
	display: block;
	width: 120px;
	height: 120px;
	object-fit: cover;
	border: 4px solid #ffffff;
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(2, 22, 39, 0.14);
}

.vr-single-author__content {
	flex: 1;
	min-width: 0;
	font-family: "Poppins", sans-serif;
}

.vr-single-author__eyebrow {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #f7a437;
}

.vr-single-author__name {
	margin: 0 0 10px;
	font-family: "Poppins", sans-serif;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.25;
	color: #021627;
}

.vr-single-author__bio {
	margin: 0 0 16px;
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
	color: #4b5563;
}

.vr-single-author__link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	color: #021627;
	transition:
		color 0.2s ease,
		gap 0.2s ease;
}

.vr-single-author__link:hover {
	gap: 13px;
	color: #d97d0e;
}

.vr-single-author__link:focus-visible {
	outline: 3px solid rgba(247, 164, 55, 0.35);
	outline-offset: 4px;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.vr-single-author {
		padding: 0 20px 64px;
	}

	.vr-single-author__card {
		align-items: flex-start;
		gap: 22px;
		padding: 26px;
	}

	.vr-single-author__media {
		flex-basis: 92px;
		width: 92px;
		height: 92px;
	}

	.vr-single-author__avatar {
		width: 92px;
		height: 92px;
	}

	.vr-single-author__name {
		font-size: 22px;
	}
}

@media (max-width: 560px) {
	.vr-single-author {
		padding-right: 16px;
		padding-left: 16px;
	}

	.vr-single-author__card {
		flex-direction: column;
		padding: 24px;
	}

	.vr-single-author__media {
		flex-basis: auto;
		width: 88px;
		height: 88px;
	}

	.vr-single-author__avatar {
		width: 88px;
		height: 88px;
	}

	.vr-single-author__bio {
		font-size: 14px;
	}
}