.minga-author__hero {
	padding-top: 24px;
	padding-bottom: 56px;
	background: #f2f5f7;
}

.minga-author__profile {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: center;
	max-width: 1024px;
	margin: 0 auto;
}

.minga-author__avatar_wrap {
	display: flex;
	justify-content: center;
}

.minga-author__avatar {
	width: 240px;
	height: 240px;
	border-radius: 50%;
	object-fit: cover;
}

.minga-author__details {
	text-align: center;
}

.minga-author__name {
	margin: 0 0 8px;
	padding-top: 0;
	color: #003366;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.15;
}

.minga-author__job_title {
	margin: 0 0 20px;
	color: #718499;
	font-size: 18px;
	line-height: 1.4;
}

.minga-author__bio {
	margin-bottom: 20px;
	color: #33485d;
	font-size: 18px;
	line-height: 1.7;
}

.minga-author__bio p {
	margin: 0 0 16px;
}

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

.minga-author__social_link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #718499;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.minga-author__social_link:hover {
	background: #003366;
}

.minga-author__social_icon {
	display: block;
	width: 12px;
	height: 12px;
}

@media screen and (min-width: 768px) {
	.minga-author__profile {
		grid-template-columns: auto minmax(0, 1fr);
		gap: 48px;
	}

	.minga-author__avatar_wrap {
		justify-content: flex-start;
	}

	.minga-author__details {
		text-align: left;
	}
}

@media screen and (min-width: 1024px) {
	.minga-author__hero {
		padding-top: 40px;
		padding-bottom: 64px;
	}
}

@media screen and (max-width: 767px) {
	.minga-author__bio {
		font-size: 16px;
	}
}
