

.author-box {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	width: fit-content;
	margin: 2rem auto;
	margin-bottom: 2rem;
	margin-bottom: 1rem;
}

.author-avatar-wrapper {
	position: relative;
	width: 48px;
	height: 48px;
}

.author-avatar-wrapper .author-avatar {
	width: 100%;
	height: auto;
	border-radius: 50%;
}


.author-details {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}

.author-name {
	font-weight: bold;
	line-height: 1;
}

.publish-date {
	font-size: 12px;
	line-height: 1;
}


.share-buttons {
	display: flex;
	gap: 10px;
}

.share-btn {
	display: flex;
	padding: 10px 16px;
	justify-content: center;
	align-items: center;
	gap: var(--spacing-md, 8px);
	background: var(--Everte-Primary, #ED0093);
	color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF);
	font-size: 17px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px; /* 117.647% */
	cursor: pointer;
	transition: all 0.2s ease;
	border: 0;
}

.share-btn:hover {
	background: #2F3031;
}

.share-btn img.icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

@media (max-width: 767px) {
	
	.share-btn {
		padding: 10px;
		font-size: 14px;
		line-height: 13px;
	}

	.share-btn img.icon {
		width: 14px;
		height: 14px;
	}

}
