/* Author About Meta Block - Frontend Styles */
.peakt-author-about-container {
    display: flex;
    gap: 37px;
    align-items: flex-start;
    max-width: 802px;
    margin: 0 auto;
    padding-top: 10px;
}
.peakt-author-avatar-img {
	width: 160px;
	height: 160px;
	border-radius: 20px;
	object-fit: cover;
	display: block;
}

.peakt-author-about-content {
	flex: 1;
	min-width: 0;
}

.peakt-author-name {
	color: #000;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.96px;
    margin: 0;
  	padding-bottom: 10px;
}

.peakt-author-bio {
	color: #000;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.64px;
}

.peakt-author-bio p {
	margin-bottom: 29px;
}

.peakt-author-website-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 13px 45px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    background-color: #ffbf3f;
    font-family: Inter, sans-serif;
}

.yellow-hover-btn a:hover {
    background-color: #000;
    color: #fff;
}

/* Tablet Responsive */
@media (max-width: 768px) {
	.peakt-author-about-container {
		flex-direction: column;
		gap: 1.5rem;
		padding: 0 1.5rem;
	}

	.peakt-author-avatar-wrapper {
		text-align: center;
	}

	.peakt-author-name {
		font-size: 1.25rem;
	}

	.peakt-author-bio {
		font-size: 0.95rem;
	}
}

/* Mobile Responsive */
@media (max-width: 480px) {
	.peakt-author-about-container {
		gap: 1rem;
		padding: 1rem;
		border-radius: 4px;
	}

	.peakt-author-avatar-img {
		width: 100px;
		height: 100px;
		border-radius: 6px;
	}

	.peakt-author-name {
		font-size: 1.1rem;
		margin-bottom: 0.75rem;
	}

	.peakt-author-bio {
		margin-bottom: 1rem;
		font-size: 0.9rem;
	}

	.peakt-author-website-btn {
		padding: 0.6rem 1.2rem;
		font-size: 0.9rem;
	}
}
