/**
 * Author Bio style (tham chieu Ecosoap)
 */

.ecosoap-author-bio {
	padding: 20px;
	margin: 30px 0;
	border: 1px solid #e9ecef;
	border-radius: 12px;
}

.ecosoap-author-bio__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: flex-start;
}

.ecosoap-author-bio__avatar {
	flex-shrink: 0;
}

.ecosoap-author-bio__avatar a {
	display: block;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.ecosoap-author-bio__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ecosoap-author-bio__body {
	flex: 1;
	min-width: 0;
}

.ecosoap-author-bio__name {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 12px 0;
	line-height: 1.3;
}

.ecosoap-author-bio__name a {
	color: #212529;
	text-decoration: none;
	transition: color 0.25s ease;
}

.ecosoap-author-bio__name a:hover {
	color: #198754;
}

.ecosoap-author-bio__bio {
	font-size: 15px;
	line-height: 1.7;
	color: #495057;
	margin-bottom: 16px;
}

.ecosoap-author-bio__bio p {
	margin: 0 0 10px 0;
}

.ecosoap-author-bio__bio p:last-child {
	margin-bottom: 0;
}

.ecosoap-author-bio__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.ecosoap-author-bio__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ecosoap-author-bio__social-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	color: #fff;
}

.ecosoap-author-bio__social-link i {
	font-size: 16px;
}

@media (max-width: 575px) {
	.ecosoap-author-bio {
		padding: 24px 0;
		margin-top: 32px;
	}

	.ecosoap-author-bio__inner {
		gap: 20px;
	}

	.ecosoap-author-bio__avatar a {
		width: 100px;
		height: 100px;
	}

	.ecosoap-author-bio__name {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.ecosoap-author-bio__bio {
		font-size: 14px;
		margin-bottom: 14px;
	}

	.ecosoap-author-bio__social-link {
		width: 36px;
		height: 36px;
	}

	.ecosoap-author-bio__social-link i {
		font-size: 14px;
	}
}

