/**
 * About Author box (end of single post).
 */

.spz-about-author {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.spz-about-author__avatar-link {
	display: block;
	flex-shrink: 0;
	line-height: 0;
}

.spz-about-author__avatar {
	display: block;
	width: 154px;
	height: 154px;
	border-radius: 50%;
	border:3px solid #2824FF;
	object-fit: cover;
}

.spz-about-author__content {
	flex: 1;
	min-width: 0;
}

.spz-about-author__eyebrow {
	margin: 0 0 0.375rem;
	color: rgba(210, 223, 255, 0.85);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.06em;
	margin:0;
}

.spz-about-author__name {
	margin: 16px 0 16px;
	color: var(--color-text);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	background: none;
	-webkit-text-fill-color: currentColor;
}

.spz-about-author__name a {
	color: inherit;
	text-decoration: none;
}

.spz-about-author__name a:hover {
	color: #d2dfff;
}

.spz-about-author__bio {
	margin: 0 0 1.5rem;
	color: rgba(210, 223, 255, 0.92);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.7;
}

.spz-about-author__bio p {
	margin: 0 0 1rem;
}

.spz-about-author__bio p:last-child {
	margin-bottom: 0;
}

.spz-about-author__bio a {
	color: #488bff;
	text-decoration: underline;
}

.spz-about-author__bio a:hover {
	color: #d2dfff;
}

.spz-about-author__specialty {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.125rem;
	border: 1px solid #2824FF;
	border-radius: 0.5rem;
	color: var(--color-text);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

a.spz-about-author__specialty:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.35);
}

.spz-about-author__specialty-icon {
	display: inline-flex;
	flex-shrink: 0;
	color: white;
}


@media (max-width: 768px) {
	.spz-about-author {
		margin-bottom:16px;
	}
}
@media (max-width: 576px) {
	.spz-about-author {
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
		padding: 1.5rem;
		text-align: center;
	}

	.spz-about-author__avatar {
		width: 100px;
		height: 100px;
	}

	.spz-about-author__specialty {
		margin: 0 auto;
	}
}
