.news_detail_wrap{
	width: 100%;
}

	.news_detail_wrap__BANNER{
		position: relative;
		display: flex;
		flex-direction: column;
	    justify-content: center;
	    align-items: flex-start;
	}
		.news_detail_wrap__BANNER_TITLE{
			position: relative;
			margin-left: 60px;
			width: 32%;
			
			font-family: GilroySemiBold;
			font-size: 48px;
			color: #fff;
		}
	
	.news_detail_wrap__TITLE{
		position: relative;
		margin: 10px 30px 0px 30px;
		width: calc(100% - 60px);
		
		font-family: GilroySemiBold;
		font-size: 48px;
		color: #3d2424;
	}
	
	.news_detail_wrap__TEXT{
		position: relative;
		margin: 40px 30px 20px 30px;
		width: calc(100% - 60px);
		
		font-family: GilroyLight;
		font-size: 16px;
		color: #3d2424;
		line-height: 150%;
	}
		.news_detail_wrap__TEXT > img[align='right']{
			margin: 10px 0 10px 30px;
		}
		.news_detail_wrap__TEXT > img[align='left']{
			margin: 10px 30px 10px 0;
		}
	
	.news_detail_wrap a .news_detail_wrap__BANNER_TITLE:after{
		content: '';
		padding-left: 40px;
		background: url("images/detail_arrow.svg") right no-repeat;
	}


@media screen and (max-width: 900px){
	.news_detail_wrap__BANNER_TITLE{
		position: relative;
		margin-left: 30px;
		width: 40%;
		
		font-family: GilroyLight;
		font-size: 24px;
		color: #fff;
	}
	
	.news_detail_wrap__TEXT > img{
		width: 100%; height: auto;
	}
	.news_detail_wrap__TEXT > img[align]{
		margin: 0 0 20px 0;
	}
}