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

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

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

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

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

* {
	font-family: "owners-xxnarrow", sans-serif;
	font-weight: 800;
	font-style: normal;
        
}

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%;
	background-color: #fff;
}

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

body {
	font-size: 62.5%;
	font-weight: 800;
	text-align: center;
	-webkit-overflow-scrolling: touch;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	background: url(../img/background.jpg) repeat;
	background-color: #000;
}

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;
	height: 100%;
	min-height: 100%;
	text-align: center;
	overflow: hidden;
}

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

#content {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
#content .title {
	padding: 7% 5% 10% 5%;
	text-align: center;
	margin-bottom: auto;
}
#content .title img {
	width: 45%;
}

.grid-item {
	border-width: 1px;
    border-style: solid;
    border-color: #3d3d3d;
    background-color: #000;
}
.grid-item:hover {
	border-width: 3px;
	border-color: #07ff00;
    background-color: #07ff00;
}

.content-list {
	position: relative;
	overflow: hidden;
	padding: 0 50px 130px 50px;
}
.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;
}

.content-list > ul > li a:hover {
	color: #000;
}

.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: 20px;
	text-align: left;
}

.content-headline {
	display: block;
	font-size: 2em;
	font-weight: 800;
	letter-spacing: 0.4px;
	text-align: center;

}
.content-tag {
	display: block;
	margin-top: 10px;
	font-size: 1em;
	color: rgba(200, 200, 200, 1);
}
.grid-item:hover .content-desc {
	padding: 18px;
}
.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: 32.53%; /* 24.1 */
	}
	.gutter-sizer {
		width: 1.2%;
	}
	.grid-item {
		margin-bottom: 1.2%;
	}

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

}
/* ------------------------------
---------------------------------
<Tablets> Small screens 
---------------------------------
------------------------------ */
@media (max-width: 600px) {

	#content .title {
		padding: 8% 5% 10% 5%;
	}

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

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