@import url('//fonts.googleapis.com/css2?family=Merriweather:wght@400;500;700&display=swap');

.list-entering-posts {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 35px 20px;
    width: 320px;
    max-width: 100%;
    background-color: #f5f8fb;
    border-radius: 20px;
    
	float: left;
    margin: 0 30px 30px 0;
	
	font-family: 'Merriweather';
}

.list-entering-posts.fullwidth { 
	width: 100%;
}

.list-entering-posts.right {
    float: right;
    margin: 30px 0 30px 50px;
}

.list-entering-posts.left {
    margin: 30px 50px 30px 0;
}

.list-entering-posts__title {
    margin-top: 0;
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    color: #999;
	font-weight: 700;
}

.list-entering-posts__content.column {
	display: flex;
	flex-wrap: wrap;
}

.list-entering-posts__content.column .item {
	width: 50%;
}

.list-entering-posts__content .item {
	position: relative;
	
	margin-top: 25px;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;	
	
	transition: all .5s;
}


.list-entering-posts__content .item .item-image {
	width: 100px;
	margin-right: 20px;	
}

.list-entering-posts__content .item a {
	display: calc(100% - 120px);
	
    font-size: 18px;
	line-height: 24px;
	text-decoration: none;
	color: #000;
}

.list-entering-posts__content .item a:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.list-entering-posts__content .item:hover {
	opacity: .7;
	cursor: pointer;
}

.list-entering-posts__content .item .item-image img {
	border-radius: 0;
}

.list-entering-posts__content .item .item-image.rounded {
	border-radius: 50%;	
}

.list-entering-posts__content .item .item-image.squared img {
	border-radius: 10px;	
}

@media (max-width: 600px) {
	.list-entering-posts__content.column .item {
		width: 100%;
	}
	.list-entering-posts__content .item a {
		display: calc(100% - 70px);
		margin-right: 10px;
	}
}