a.juicer-item{
	display: block;
	max-width: 358px;
	margin: 0 auto;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.2857;
}
a.juicer-item .image{
	position: relative;
	aspect-ratio: 1;
}
a.juicer-item img.main{
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}
a.juicer-item .overlay{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.2) 100%);
}
a.juicer-item[data-source="TikTok"] .overlay{
	background-image: url(../images/play.svg);
	background-position: center;
	background-repeat: no-repeat;
}
a.juicer-item img.icon{
	position: absolute;
	z-index: 2;
	bottom: 20px;
	right: 20px;
}
a.juicer-item .text{
	padding: 24px 20px;
	background: var(--wp--preset--color--desert-storm);
	transition: all .2s ease;
	transition-property: background-color, color;
}
.has-desert-storm-background-color a.juicer-item .text{
	background: #fff;
}
a.juicer-item:hover .text{
	background-color: var(--wp--preset--color--vivid-violet);
	color: #fff;
}
a.juicer-item .excerpt{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
a.juicer-item .fake-link{
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 28px 0 0;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--wp--preset--color--vivid-violet);
	text-transform: uppercase;
	transition: color .2s ease;
}
a.juicer-item .fake-link::after{
	content: '';
	display: block;
	width: .8em;
	aspect-ratio: 1;
	-webkit-mask: url(../images/button-arrow.svg) no-repeat center/contain;
	mask: url(../images/button-arrow.svg) no-repeat center/contain;
	background: currentColor;
	transition: background-color .3s ease;
}
a.juicer-item:hover .fake-link{
	color: var(--wp--preset--color--orange-peel);
}