.you-feed-grid{
    position:relative;
  display:grid;
grid-template-columns: repeat(1, minmax(0, 1fr));
grid-template-rows: repeat(1, minmax(0, 1fr));
column-gap: 20px;
row-gap: 20px;
}
.you-feed{
	height: inherit;
    width: inherit;
}
.you-feed-img {
	height: inherit;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.you-feed-img > a {
    position:relative;
    padding: 0;
    display: flex;
}
.you-feed-img >a .feed-overlay{
    position:absolute;
    background: rgba(0,0,0,0.2);
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.you-feed-img i {
    font-size: 1em;
    background:red;
	color:#FFFFFF;
	fill:#FFFFFF;
    padding: 10px 10px 10px 14px;
    border-radius: 150px;
}

.you-feed-img img{z-index:0;height: 100%;object-fit: cover;}

.you-feed-content h3.title{
    font-size: var(--e-global-typography-secondary-font-size);
    color: var(--e-global-color-primary);
}