.post-layout.social_post-layout {
	overflow: hidden;
	position: relative;
}
.post-layout.social_post-layout .social-icons {
	position: absolute;
	top: max(1rem, calc(1.25 * var(--su)));
	right: max(1rem, calc(1.25 * var(--su)));
	z-index: 5;
}
.post-layout.social_post-layout .social-icon {
	display: none;
}
.post-layout.social_post-layout .social-icon-wrapper {
	width: max(2rem, calc(2 * var(--su)));
	aspect-ratio: 1;
	background-color: var(--secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}
.post-layout.social_post-layout .social-icon-wrapper > .social-icon {
	max-width: 50%;
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
}

.post-layout.social_post-layout a[href*="instagram"] .instagram {
	display: block;
}
.post-layout.social_post-layout a[href*="linkedin"] .linkedin {
	display: block;
}
.post-layout.social_post-layout a[href*="tiktok"] .tiktok {
	display: block;
}

.post-layout.social_post-layout .social_post-image img {
	aspect-ratio: 1;
	width: 100%;
	object-fit: cover;
	object-position: center;
	transition: scale 0.2s ease;
}
.post-layout.social_post-layout .social_post-wrapper:hover .social_post-image img {
	scale: 1.05;
}