.author-info {
    display: flex;
    gap: 68px;
	padding-bottom: 32px;
}
.author-avatar {
    display: flex;
    width: 237px;
    height: 237px;
}
.author-avatar > img {
    width: 237px;
    height: 237px;
    border-radius: 100%;
}
.author-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 78%;
	gap: 16px;
}
.author-name {
    display: none;
}
.author-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}
.author-stats {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #06065F;
    border-radius: 50%;
    margin-top: 8px;
}
.author-social a img {
    filter: brightness(0) invert(1);
}
.author-post-count {
    margin-top: 8px;
    width: max-content;
    display: flex;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding: 6px 8px;
    border-radius: 4px;
    background: #dadaec;
}
.author-post-count .count {
	margin-left: 4px;
}

@media (max-width: 1279px) {
	.author-h1 {
		text-align: center;
	}
    .author-info {
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }
    .author-about {
        width: auto;
        align-items: center;
    }
    .author-description {
        display: flex;
    }
}
