.author {
	margin: 32px 0 60px;
	margin-bottom: 60px!important;
	padding: 0;
}

.single-post-inner .author .container {
	margin: 0;
	padding: 0;
}

.author__card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px;
	background: #F1F5F9;
	border: 1px solid #E9EEF5;
	border-radius: 8px;
	color: #131C2E;
}

.author__avatar {
	width: 98px;
	height: 98px;
	flex-shrink: 0;
	border-radius: 15px;
	object-fit: cover;
}

.author__info {
	min-width: 0;
}

.author__name {
	margin: 0;
	font-size: 24px;
	line-height: 140%;
	font-weight: 600;
	color: #131C2E;
}

.author__role {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 150%;
	font-weight: 600;
	color: #68C010;
}

/* Socials - brand marks keep their own colours, so they are images. */
.author__socials {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.author__social img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.author__social a {
	display: block;
	border-radius: 8px;
	transition: all 0.3s;
}

.author__social a:hover {
	opacity: 0.75;
}

.author__date {
	/* Pushed to the far edge, the way a byline date usually sits. */
	margin: 0 0 0 auto;
	padding-left: 20px;
	flex-shrink: 0;
	font-size: 16px;
	line-height: 150%;
	font-weight: 400;
	color: #3B455A;
}

@media (max-width: 1440px) {
	.author__card {
		padding: 20px;
	}

	.author__name {
		font-size: 20px;
	}

	.author__role {
		font-size: 14px;
	}
}

@media (max-width: 600px) {
	.author__card {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 20px;
		border-radius: var(--radius-md);
	}

	.author__name {
		font-size: 18px;
	}

	.author__date {
		margin-left: 0;
		padding-left: 0;
		flex-basis: 100%;
		font-size: 14px;
	}

	.author__socials {
		gap: 12px;
	}
}
