.project-details-card {
	border-radius: 16px;
	border: 1px solid var(--Base-White, #fff);
	background: var(--Base-White, #fff);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	/* Button */
	box-shadow:
		0 0 6px 2px rgba(0, 0, 0, 0.04) inset,
		0 2px 6px 0 rgba(183, 183, 183, 0.3);
}

.detail-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-bottom: 1px solid #e1e4ea;
	padding-bottom: 20px;
}

.detail-group:last-of-type {
	border-bottom: none;
}

.project-details-card label {
	color: var(--Text-Paragaph, #55575b);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.42em; /* 142.857% */
	letter-spacing: 0.7px;
	text-transform: uppercase;
}

.project-details-card h4 {
	color: var(--Text-Heading, #272727);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.33em; /* 133.333% */
	letter-spacing: -0.24px;
}

.services-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.service-tag {
	color: var(--Text-Paragaph, #55575b);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1em;
	display: flex;
	padding: 13px 16px;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	border: 1px solid var(--Base-White-Stroke, #e1e4ea);
	background: var(--Base-White, #fff);
	transition: all 0.3s ease;
}

.service-tag:hover {
	border-radius: 8px;
	color: #272727 !important;
	background: var(
		--Brand-Nav-hover,
		linear-gradient(
			180deg,
			rgba(194, 214, 255, 0.4) 0%,
			rgba(235, 241, 255, 0.4) 100%
		)
	);
}

.social-links {
	display: flex;
	gap: 12px;
}

.social-icon {
	display: flex;
	width: 36.176px;
	height: 36.176px;
	padding: 8px 8.176px 8.176px 8px;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1/1;
	border-radius: 8px;
	border: 1px solid var(--Base-White-Stroke, #e1e4ea);
	background: var(--Base-White, #fff);
}
.social-icon svg {
	color: var(--Text-Paragaph, #55575b);
}

.social-icon:hover {
	background: #3871f73b;
	border: 1px solid #3871f73b;
}

/* project details sidebar cta  */
.universal-details-sidebar-cta {
	border-radius: 16px;
	border: 1px solid var(--Base-White, #fff);
	background: var(
		--Gradients-Blue,
		linear-gradient(180deg, #c2d6ff 0%, #ebf1ff 100%)
	);
	/* Button */
	box-shadow:
		0 0 6px 2px rgba(0, 0, 0, 0.04) inset,
		0 2px 6px 0 rgba(183, 183, 183, 0.3);
	display: flex;
	padding: 24px;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	align-self: stretch;
	margin-top: 16px;
}

.universal-details-sidebar-cta h4 {
	color: #272727;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 133.333%;
	letter-spacing: -0.24px;
}
.universal-details-sidebar-cta .btn {
	width: 100%;
}

@media (min-width: 768px) {
	.elementor-widget-universal_details_sidebar {
		position: sticky;
		top: 50px;
	}
}
@media (min-width: 1024px) {
	.elementor-widget-universal_details_sidebar {
		top: 80px;
	}
}

.author-info-wrap {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.author-info-wrap .info-subtitle {
	color: #55575b;

	/* Paragraph/P3 */
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
	letter-spacing: -0.08px;
}
