.newsitem {
	width: 100%;
	background: #fcfcfc;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}
.newsitem:hover {
	background:#fff;
}
.newsitem a,
.newsitem a:hover {
	color: #555;
	text-decoration: none;
}
.newscontainer {
	display: flex;
	flex-wrap: wrap;
}
.newscontainer>div {
	border: 1px solid #ddd;
	padding: 5px;
	border-radius: 4px;
}
.newsdate {
	font-family: 'Jaldi', sans-serif;
}
@media (min-width:768px) {
	.newscontainer>div {
		flex: 0 49.6%;
		margin: .2%;
		flex-grow:1;
	}
}
.newsitem img {
	width: 125px!important;
	height: 125px!important;
	padding-right: 5px;
	float:left;
}
@media (max-width:767px) {
	.newscontainer>div {
		flex: 100%;
		margin: .2% 0;
	}
	.newsitem img {
		width: 75px!important;
		height: 75px!important;
	}
}
.newsitem .img-responsive,
.detail .img-responsive {
	object-fit: cover;
}
.direction {
	font-size: 90%;
	text-align: center;
	padding: 15px;
}
.detail {
	border: 1px solid #ddd;
	padding: 15px;
	background: #fcfcfc;
	margin-bottom: 15px;
	border-radius: 4px;
	display: inline-block;
	width: 100%;
}
.detail h1 {
	margin:0 0 15px 0;
}
.detail p:first-of-type {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}

.detail p:first-of-type > a {
	flex: 1;
}
.detail img {
	padding: 0;
	margin: 0;
	border: 1px solid #ddd;
	width: 100% !important;
	height: 250px !important;
	object-fit: cover;
	display: block;
}
@media (min-width:601px) {
	.detail p:first-of-type > a {
		flex: 1;
	}
}
@media (max-width:600px) {
	.detail p:first-of-type {
		flex-direction: column;
	}

	.detail img {
		width: 100%;
		height: auto;
	}
}