/* BLOCK VIEW (block.html.twig) */

#mx_news_block {
display: flex;
align-items: stretch;
flex-wrap: wrap;
}

.mx_news_block_item {
float: left;
width: calc(33.3% - 30px);
margin: 0 15px 30px 15px;
border: solid 2px #3b3d42;
background-color: #FFFFFF;
position: relative;
padding-bottom: 40px;
}

.mx_news_block_item p:last-of-type {
	margin: 0 25px;
    border-top: solid 1px #3b3d42;
	padding: 15px 0 20px 0;
	position: absolute;
	width: calc(100% - 50px);
	left: 0;
	bottom:0;
}

.mx_news_block_image img {
width: 100%;
}

.mx_news_block_image {
width: 100%;
}

.mx_news_block_content {
	padding: 20px;
}

.mx_news_block_content h3 {
font-size: 24px;
}

.mx_news_block_item em {
display: block;
font-style: normal;
font-size:15px;
}

@media screen and (max-width: 1023px) {

.mx_news_block_item {
width: calc(50% - 30px);
}

.mx_news_block_item:nth-of-type(3) {
display: none;
}

} /* end mediaquery */

@media screen and (max-width: 750px) {

.mx_news_block_item {
width: calc(100% - 30px);
}

} /* end mediaquery */

/* CATEGORY VIEW (category.html.twig) */
.mx_news_category_item {
	display: table;
	width: 100%;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px #3B3D42 solid;
}

.mx_news_category_item:last-child {
	border-bottom: 0;
}

.mx_news_category_item h3,
.mx_news_category_item p {
	margin: 0;
	padding: 0;
}

.mx_news_category_item em {
display: block;
font-style: normal;
padding-bottom: 30px;
}

.mx_news_category_image img {
	display: table;
	width: 250px;
	height: auto;
	float: left;
	margin-right: 5%;
}

.mx_news_category_content {
	display: table;
}

@media screen and (max-width: 860px) {

.mx_news_category_image img {
margin-bottom: 15px;
}

.mx_news_category_content {
clear: left;
}

} /* end mediaquery */

@media screen and (max-width: 650px) {

.mx_news_category_image img {
margin-right: 0;
width: 100%;
}

} /* end mediaquery */

/* ITEM VIEW (item.html.twig) */
#mx_news_item .addthis_toolbox {
	margin: 10px 0 10px -2px;
}

.mx_news_item_main_image {
	float: right;
	margin: 0 0 10px 20px;
}

.mx_news_item_main_image img {
	display: table;
	width: 250px;
}

.mx_news_item_image {
	display: table;
	float: left;
	margin: 0 10px 10px 0;
}

.mx_news_item_image a {
	display: inline-block;
	width: 100%;
	height: 100%;
	float: left;
}

.mx_news_item_image img {
	float: left;
	clear: both;
}

.mx_news_item_image span {
	float: left;
	clear: both;
	width: 100%;
	line-height: 1em;
	margin: 7px 0 2px;
	display: inline-block;
	text-align: center;
	overflow: hidden;
	height: 1em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media screen and (max-width: 550px) {

.mx_news_item_main_image {
display:none;
}

}