/**
 * Author Box – Frontend styles
 *
 * @package Author_Box
 */

.wab-author-box {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	padding-bottom: 1rem;
	background: transparent;
	position: relative;
}

.wab-author-image {
	flex-shrink: 0;
}

.wab-author-image img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: none;
	display: block;
	scale: 1.2;
}

.wab-author-content {
	flex: 1;
	min-width: 0;
}

.wab-author-label {
	font-size: 0.9375rem;
	color: #1d2327;
	line-height: 1.4;
	font-weight: 400;
}

.wab-author-content > div:last-child {
	line-height: 1.5;
}

.wab-author-name {
	font-size: 1rem;
	font-weight: 500;
	color: #4a9eff;
	line-height: 1.8;
	display: inline;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.wab-author-name:hover {
	opacity: 0.8;
	text-decoration: underline;
}

.wab-author-updated {
	font-size: 0.8375rem;
	color: #1d2327;
	line-height: 1.4;
	display: inline;
}

.wab-author-separator {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: #006666;
	border-radius: 0;
}

.wab-author-credentials {
	color: #2271b1;
	font-weight: 500;
}

.wab-author-bio {
	color: #1d2327;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-top: 0.75rem;
	display: block;
}

.wab-author-bio p {
	margin: 0;
	color: #1d2327;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.wab-author-bio p + p {
	margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 600px) {
	.wab-author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.wab-author-content {
		text-align: center;
	}
	
	.wab-author-separator {
		position: relative;
		margin-top: 1rem;
	}
}
