/* Author Bio Section */
.author-bio-section {
	background: #ABBDBE;
	background-image: 
	radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
	radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
	padding:4.2%;
	border-bottom: 1px solid #a0c0bd;
	position: relative;
}

.author-bio-section .author-bio-container {
	max-width: 800px;
	margin: 0 auto;
}

.author-bio-section .author-bio-wrapper {
	display: flex;
	gap:5%;
	align-items: flex-start;
}

/* Author Image */
.author-bio-section .author-image {
	flex-shrink: 0;
	width:120px;
	height:120px;
  margin:0 auto 0.4em;
	border-radius: 50%;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	color: #6b9a97;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
  
}

.author-bio-section .author-image:hover {
	transform: scale(1.05);
}

.author-bio-section .author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
  margin:0;
}

/* Author Content */
.author-bio-section .author-content { flex: 1; }
.author-bio-section .author-heading {
  font-family:ppradiogrotesk, arial, helvetica, sans-serif;
	font-size: 24px;
	font-weight: 300;
	color: white;
	margin-bottom: 15px;
	letter-spacing: -0.5px;
}
.author-bio-section .author-heading strong { font-weight: 500; }
.author-bio-section .author-bio {
	color: #1a3d3a;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 20px;
}

/* Social Links */
.author-bio-section .author-social { display: flex; gap: 12px; align-items:center; }
.author-bio-section .social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: white;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.author-bio-section .social-link:hover {
	background: #2c3e50;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.author-bio-section .social-link svg {
	width: 18px;
	height: 18px;
	fill: #6b9a97;
}
.author-bio-section .social-link:hover svg {
	fill: white;
}
.author-bio-section .social-text {
	color: #1a3d3a;
	font-size: 13px;
	margin-right: 5px;
	font-weight: 500;
}


@media screen and (max-width:550px) {
  .author-bio-section .author-bio-wrapper { display:block; text-align:center; }
}