.news_list {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 4rem;
	list-style: none;
}
.news_item {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 4rem;
	padding-bottom: 8rem;
	box-sizing: border-box;
	border-bottom: 1px solid #ddd;
    position: relative;
}
.news_item:nth-child(1) {
	margin-top: 0;
}
.news_item_top_line {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	height: auto;
}
.news_item_title {
	display: block;
	width: 80%;
	height: auto;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.2em;
	font-weight: bold;
}
.news_item_date {
	display: block;
	width: auto;
	height: auto;
	text-align: right;
	font-size: 1.6rem;
	line-height: 1.2em;
	color: #ffa210;
}
.news_item_container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	height: auto;
	margin-top: 2rem;
}
.news_item_image_container {
	display: block;
	width: 20rem;
	height: 11.3rem;
}
.news_image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news_item_info_container {
	display: block;
	width: 90rem;
	height: 14rem;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}
/* .news_item_info_container:after {
	content: '';
	display: block;
	width: 100%;
	height: 20%;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .8));
	position: absolute;
	z-index: 2;
} */
.news_item_text,
.news_item_info_container p {
	display: block;
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.4em;
	position: relative;
	z-index: 1;
    margin-top: 1rem;
}
.news_item_text:empty,
.news_item_info_container p:empty {
    display: none;
}
.news_item_text:empty + p,
.news_item_info_container p:empty + p {
    margin-top: 0 !important;
}
.news_item_text span,
.news_item_info_container p span {
    color: inherit !important;
}
.news_item_text a,
.news_item_info_container p a {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}
.news_item_text a:hover,
.news_item_info_container p a:hover {
    text-decoration: none;
}
.news_item_button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 2em;
	font-size: 1.6rem;
	line-height: 1em;
	position: absolute;
	bottom: 2rem;
	left: 30rem;
}

@media screen and (max-width: 768px) {
	.news_list {
		margin-top: 4rem;
	}
	.news_item {
		margin-top: 4rem;
		padding-bottom: 4rem;
		border-bottom: 1px solid #ddd;
		height: 80rem;
		padding-bottom: 0;
		padding-top: 50rem;
		border: 1px solid #E5E5E5;
		overflow: hidden;
		border-radius: 1em;
	}
	.news_item:nth-child(1) {
		margin-top: 0;
	}
	.news_item_top_line {
		display: block;
		position: relative;
		z-index: 2;
		padding: 11rem 4rem 0;
		pointer-events: none;
	}
	.news_item_title {
		width: 100%;
		font-size: 4rem;
	}
	.news_item_date {
		text-align: left;
		font-size: 3.2rem;
		margin-top: 1rem;
		position: absolute;
		top: 4rem;
		left: 4rem;
	}
	.news_item_container {
		display: block;
		margin-top: 2rem;
		margin-top: 0;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.news_item_image_container {
		width: 100%;
		height: 50rem;
		background-color: #EAEAEA;
	}
	.news_item_info_container {
		width: 100%;
		height: 40rem;
		padding-top: 4rem;
        display: none;
	}
	/* .news_item_info_container:after {
		height: 20%;
	} */
	.news_item_text,
    .news_item_info_container p {
		font-size: 3.2rem;
	}
	.news_item_button {
		width: 40rem;
		height: 2em;
		font-size: 3.2rem;
		position: static;
		bottom: auto;
		left: auto;
		margin: 2rem auto 0;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		margin: 0;
		left: 0;
		opacity: 0;
	}
}
