:root {
	--primary-color: #4B004D;
	--beige: #E5DDD2;
	--background-light: #FCFBF9;
	--white: #fff;
}

.author-box {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	width: fit-content;
	margin: 2rem auto;
	margin-bottom: 2rem;
	margin-bottom: 1rem;
	background: #ffffffa1;
	border: 1px solid #fff;
	border-radius: 70px;
	padding: 5px 5px;
	padding-right: 15px;
	backdrop-filter: blur(5px);
	box-shadow: 0 0 35px -5px rgba(187, 162, 214, 0.4);
}

.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: 4px;
}

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

.author-signature {
	font-size: 12px;
	line-height: 1;
	color: #666;
	font-style: italic;
}

.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(--primary-color);
    color: var(--white);
	font-size: 17px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px; /* 117.647% */
	cursor: pointer;
	transition: all 0.2s ease;
	border: 0;
	border-radius: 100px;
}

.share-btn:hover {
	background: #A44EA4;
	color: #fff;
}

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

/* Copy link button animations */
.share-btn.copy-link {
	position: relative;
	overflow: hidden;
}

.share-btn.copied {
	background: #10b981 !important;
	color: var(--white) !important;
	transform: scale(1.05);
}

.share-btn .checkmark {
	display: inline-block;
	animation: checkmarkPop 0.3s ease-out;
}

@keyframes checkmarkPop {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.3);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}


/* Inline | https://ispolska.dstdesign.website/blog/ */

.custom-news-wrapper.tripple .et_pb_ajax_pagination_container article {
  display: flex;
  flex-direction: column;
}

.entry-featured-image-url {
  width: 100%;
}

.entry-featured-image-url::before {
  content: "";
  display: block;
  padding-top: 65%;
}

.entry-featured-image-url {
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 1rem;
}

.entry-featured-image-url img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
  left: 0;
  border-radius: 10px;
}

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

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

	

}
