

.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;
	justify-content: center;
	align-items: center;
	gap: var(--spacing-md, 8px);
	background: var(--Everte-Primary, #FA9906);
	font-style: normal;
	font-weight: 600;
	line-height: 20px; /* 117.647% */
	cursor: pointer;
	transition: all 0.2s ease;
	border: 0;
  padding: 10px 12px;
  color: #000;
  font-size: 14px;
  border-radius: 59px;
}



.share-btn img {
  filter: brightness(0);
}


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


.copy-alert {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.copy-alert.visible {
  opacity: 1;
}



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

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

}
