/*
 * SW Signature Auteur
 * Les variables ci-dessous permettent d’ajuster rapidement le rendu.
 */

.swsa-author-signature {
	--swsa-avatar-size: 72px;
	--swsa-accent: #e62b31;
	--swsa-border: #e8e8e8;

	display: flex;
	align-items: center;
	gap: 16px;
	box-sizing: border-box;
	width: 100%;
	margin: 28px 0 0;
	padding: 14px 18px;
	border: 1px solid var(--swsa-border);
	border-left: 3px solid var(--swsa-accent);
	border-radius: 5px;
	background: #fff;
	text-align: left;
}

.swsa-author-signature__avatar {
	display: block;
	flex: 0 0 var(--swsa-avatar-size);
	width: var(--swsa-avatar-size);
	height: var(--swsa-avatar-size);
	margin: 0;
	padding: 0;
	line-height: 0;
	text-decoration: none;
}

.swsa-author-signature__image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	object-fit: contain;
}

.swsa-author-signature__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #f1f1f1;
	color: #555;
	font-size: 28px;
	font-weight: 600;
	line-height: 1;
}

.swsa-author-signature__name {
	min-width: 0;
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.25;
}

.swsa-author-signature__name-link {
	color: var(--swsa-accent);
	text-decoration: none;
	box-shadow: none;
}

.swsa-author-signature__name-link:hover,
.swsa-author-signature__name-link:focus {
	color: var(--swsa-accent);
	text-decoration: underline;
	box-shadow: none;
}

.swsa-author-signature__avatar:focus-visible,
.swsa-author-signature__name-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

@media screen and (max-width: 767px) {
	.swsa-author-signature {
		--swsa-avatar-size: 54px;

		gap: 12px;
		margin-top: 20px;
		padding: 10px 12px;
		border-radius: 4px;
	}

	.swsa-author-signature__name {
		font-size: 15px;
		line-height: 1.2;
	}
}
