/*
가이드 명칭 : YG CSS 가이드
가이드 내용 : 사이트 레이아웃
최초 제작자 : YG WDT
최종 제작일 : 2020.01.
수정 / 배포 : 담당자 문의 후 수정 가능. 재배포 절대 불가
*/

/* ------------------------------- */

/* IE6.0 Hack CSS 연결 ----------- */

/* ------------------------------- */

@charset "utf-8";
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 * Common
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */


* {
	font-family: "pretendard", sans-serif;
}

html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
	-webkit-text-size-adjust: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
}

html,
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
dl,
dt,
dd {
	margin: 0;
	padding: 0;
	word-break: keep-all;
}

body {
	color: #000;
	font-size: 62.5%;
	font-weight: 400;
	text-align: center;
	-webkit-overflow-scrolling: touch;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1em;
	color: rgba(0, 0, 0, 0.9);
	text-align: center;
}

h1 {
	font-size: 3.6em;
}

h2 {
	font-size: 3.0em;
}

h3 {
	font-size: 2.4em;
}

h4 {
	font-size: 1.8em;
}

h5 {
	font-size: 1.4em;
}

h6 {
	font-size: 1.2em;
}

ul,
ol,
dl {
	list-style: none;
}

table {
	border-collapse: collapse;
}

img {
	max-width: 100%;
	border: 0;
	vertical-align: top;
	overflow: hidden;
}

a {
	display: inline-block;
	overflow: visible;
	cursor: pointer;
	padding: 0;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	vertical-align: middle;
	text-align: center;
	box-sizing: border-box;
	onfocus: blur;
}

a,
a:link {
	text-decoration: none;
}

a:hover,
a:active,
a:focus {}

a[class*="btn-"] {
	border-radius: 3px;
}

.hidden {
	display: none;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 * layout
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

#wrap {
	position: relative;
	width: 100%;
	height: auto !important;
	background-color: #000;
	min-height: 100%;
	text-align: center;
	overflow: hidden;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 * content
 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


 #content {
 	width: 100%;
 	max-width: 1200px;
 	margin: 0 auto;
 }

 #content .title {
 	padding: 8% 0;
 	text-align: center;
 }

 #content .title img {
 	width: 30%;
 }

 .grid-item {
 	border-width: 1px;
 	border-style: solid;
 	border-color: #222;
 	background-color: rgba(140, 2, 2, 0.8);
 	border-width: 1px;
 	border-color: rgba(255, 117, 117, 0.1);
 }

 .grid-item:hover {
 	border-width: 1px;
 	border-color: #a8a8a8;
 	background-color: #8c0202;

 }

 .content-list {
 	position: relative;
 	overflow: hidden;
 	padding-bottom: 20%;
 }

 .content-list > ul,
 .content-list > ul > li {
 	display: block;
 	text-align: left;
 	overflow: hidden;
 }
 .content-list > ul > li img {
 	width: 100%;
 	overflow: hidden;
 }
 .content-list > ul > li a {
 	color: #fff;
 }
 .grid-item .video {
 	position: relative;
 }
 .grid-item .video:after {
 	content: url(../img/ico-video.png);
 	position: absolute;
 	left: 50%;
 	top: 50%;
 	margin-left: -24px;
 	margin-top: -17px;
 }

 .grid-item .video:after img {
 	width: 100%;
 }

 .content-desc {
 	display: block;
 	padding: 1.2vw 1.4vw 1.2vw;
 	text-align: left;
 }

 .content-headline {
 	display: block;
 	font-size: 1.5em;
 	font-weight: 700;
 	line-height:1.5em ;
 }
 .content-tag {
 	display: block;
 	margin-top: 10px;
 	font-size: 1em;
 	color: rgba(200, 200, 200, 1);
 }

 .grid-item:hover .content-desc {
 	padding: 1.2vw 1.4vw 1.2vw;

 }

 .grid-item:hover .content-headline {
 	text-decoration: underline;
 }
/* ------------------------------
---------------------------------
[ Desktops only ]
---------------------------------
------------------------------ */
@media (min-width: 970px) {
	.grid-sizer,
	.grid-item {
		width: 24.1%;
	}
	.gutter-sizer {
		width: 1.2%;
	}
	.grid-item {
		margin-bottom: 1.2%;
	}
}
/* ------------------------------
---------------------------------
[ Phones & Tablets only ]
<Tablets> Large screens 
---------------------------------
------------------------------ */
@media (max-width: 969px) {

	.grid-sizer,
	.grid-item {
		width: 100%; /* 24.1 */
	}
	.gutter-sizer {
		width: 1.2%;
	}
	.grid-item {
		margin-bottom: 6%;
	}

	#content .title img {
		width: 58%;
	}


	#content .title {
		padding: 14% 0;
	}

	.content-desc {
		padding: 4vw 3.4vw 4vw;
	}

	.grid-item:hover .content-desc {
		padding: 4vw 3.4vw 4vw;

	}

}

/* ------------------------------
---------------------------------
<Phones> Large screens 
---------------------------------
------------------------------ */
@media (max-width: 480px) {
	.grid-sizer,
	.grid-item {
		width: 100%;
		height: auto;
	}
	.gutter-sizer {
		width: 0;
	}

	.content-desc {
		padding: 6vw 6vw 7vw;
	}

	.grid-item:hover .content-desc {
		padding: 6vw 6vw 7vw;

	}

}