/* gallery */
ul.gallery *{
	text-decoration: none!important;
}
ul.gallery{
	margin-bottom: 30px;
	display: flex;
	gap: 30px;
    flex-wrap: wrap;
}

ul.gallery li > a{
	display: block;
    border-radius: 10px;
}
div.no_image{
	display: flex;
	justify-content: center;
	align-items: center;
    border-radius: 10px;
}
div.no_image_text{
	text-align: center;
	font-size: 20px;
	text-decoration: none;
	transition: 0.4s all;
}
div.doc_title{
	font-size: 16px;
	font-weight: 700;
    color:#000;
/*	margin-bottom: 20px;*/
}
i.doc_title_icon{
	font-size: 16px;
	margin-left: 20px;
	color: #777777;
}
div.doc_content{
	color : rgb(153, 153, 153);
	font-size: 17px;
}
div.image_area{
    overflow: hidden;
    /* border: 1px solid #e4e4e4; */
    font-size: 0;
	position: relative;
	/* background: #e1e1e1; */
}
div.gallery_content{
	position: absolute;
/*	top:0;*/
	left: 0;
	bottom:0;
	width: 100%;
/*	height: 100%;*/
	display: flex;
	justify-content: center;
	align-items: center;
}
div.gallery_content_in{
	padding: 15px 15px 0 15px;
	/*opacity: 0;
	transition: 0.4s all;*/
}
/*div.gallery_content_in *{
	color: #fff;
}*/

div.gallery_content:hover div.gallery_content_in{
	opacity: 1;
}

a.doc_link img{
	width: 100%;
	/* height: 100%;*/
	image-rendering: -moz-crisp-edges; /* firefox */
	image-rendering: -o-crisp-edges; /* opera */
	image-rendering: -webkit-optimize-contrast; /* chrome(비표준) */
	image-rendering: crisp-edges;
	transform:scale(1);
	backface-visibility:hidden;
	transition:0.5s transform;
}
a.doc_link:hover img{
	transform:scale(1.2);
}
div.doc_info{
	text-align: center;
}
div.doc_info span{
    font-size: 14px;
    font-weight: 300;
}
span.readed_count:after{
    content: "·";
    margin-left: 4px;
}
ul.extra_item{
	text-align: center;
}
ul.extra_item li{
	margin: 0;
	margin-top: 5px;
	padding: 0;
	border: 0;
	font-size: 14px;
	color: #fff;
}
ul.extra_item li:last-child{
	border: 0;
}
img.highlight{
	position: absolute;
	top: 5px;
	right: 5px;
}
div.menu_description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    height: 65%;
    background-color: #6c5631c2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
	opacity: 0;
	transition: 0.5s all;
}
div.menu_description_body{
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	color: #fff;
}
div.menu_description_body span{
	font-weight: 700;
	color: #fff;
}
ul.gallery li > a:hover div.menu_description{
	opacity: 1;
}
@media ( max-width: 768px ) {
	ul.gallery{
		padding: 5px;
		gap: 10px;
	}
	div.gallery_content_in{
		padding: 3px;
	}
	div.doc_title{
		font-size: 11px;
	}
	div.doc_info span{
		font-size: 11px;
		display: block;
	}
	div.menu_description_body{
		font-size: 11px;
	}
}