.news-main {
	padding: 50px 15px;
}

.news-container {
	padding-top: 70px;
	width: 100%;
	max-width: 1000px;
	margin: auto;
	text-align: left;
}

.news-module {
	padding: 0px 0px 40px;
	display: inline-block;
	width: calc(50% - 40px);
	height: auto;
	margin: 0 20px;
	vertical-align: top;
	margin-bottom: 50px;
	position: relative;
}

@media only screen and (max-width: 666px) {
	.news-module {
		width: 100%;
		display: block;
		margin: 0 0 50px;
	}
}

.news-image {
	border-radius: 3px 3px 0px 0px;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.news-contents {
	text-align: left;
	padding: 20px 24px;
	position: relative;
	overflow: hidden;
}

.news-headline {
	font-size: 27px;
	font-weight: 700;
	margin-bottom: 10px;
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 10px;
}

.news-copy {
	height: auto;
	max-height: 110px;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
}

.news-copy > p {
	font-size: 14px;
	line-height: 22px;
}

.news-more {
	font-size: 14px;
	color: #1088df;
	position: absolute;
	left: 24px;
	bottom: 25px;
}

.grad {
	pointer-events: none;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: rgba(255, 255, 255, 0); /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255)); /* Standard syntax */

}

.delete {
	position: absolute;
	bottom: 10px;
	right: 10px;
}

.edit {
	position: absolute;
	bottom: 10px;
	right: 70px;
}

.news-more-main {
	padding: 50px 15px;
	max-width: 900px;
}

.news-more-container {
	text-align: left;
}

.news-more-headline {
	font-size: 30px;
	width: 100%;
	border-bottom: 1px solid #f0f0f0;
	padding: 10px 0;
	margin-bottom: 10px;
}

.news-more-date {
	text-align: right;
	margin-bottom: 30px;
	font-size: 14px;
}

.news-more-article > p {
	font-size: 16px;
}

.news-more-article > img {
	max-width: 100%;
	margin-bottom: 20px;
}


/* editting news */
.edit-news-image-item {
	display: inline-block;
	vertical-align: top;
	margin: 20px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	padding: 40px 10px 10px;
	border-radius: 3px;
	position: relative;
}

.news-image-delete {
	background-image: url("../../images/cross.svg");
	position: absolute;
	top: 10px;
	left: 10px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 15px;
	height: 15px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.news-image-delete:hover {
	opacity: 0.5;
}

.edit-news-image {
	width: 100%;
	max-width: 200px;
}
