/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/


.gmarket-b {font-family: 'gmarket-b';}
.gmarket-m {font-family: 'gmarket-m';}

.ebs-ju-b {font-family: 'ebs-ju-b';}
.ebs-ju-m {font-family: 'ebs-ju-m';}
.ebs-ju-l {font-family: 'ebs-ju-l';}

.SCDream5 {font-family: 'SCDream5';}
.SCDream6 {font-family: 'SCDream6';}
.SCDream7 {font-family: 'SCDream7';}
.SCDream8 {font-family: 'SCDream8';}
.SCDream9 {font-family: 'SCDream9';}

#content .container { position: relative; }

.grid-container,
.grid-inner {
	position: relative;
	overflow: hidden;
}

.grid-inner {
	width: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

body:not(.device-touch) .grid-container {
	-webkit-transition: height .4s ease;
	-o-transition: height .4s ease;
	transition: height .4s ease;
}

.entry-image { 
	margin-bottom: 30px;
	border-radius: 10px !important;
	overflow:hidden; /* 이미지 확대시 넘어가는 부분 숨기기, radius도 적용됨 */
 }

.posts-md .entry-image,
.posts-sm .entry-image {
	margin-bottom: 0;
}

.entry-image,
.entry-image > a,
.entry-image .slide a,
.entry-image img {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
}

.entry-image a {transition: 0.5s;} 
.entry-image:hover li a {transform: scale(1.5)}

.entry-image a:hover {
	transform:scale(1.1);             /*  default */
	-webkit-transform:scale(1.1);     /*  크롬 */
	-moz-transform:scale(1.1);       /* FireFox */
	-o-transform:scale(1.1);           /* Opera */
	transition: all 0.5s ease-in-out;   /* 부드러운 모션을 위해 추가*/
}

.posts-sm .entry-image {
	width: 64px;
}

.entry-image iframe { display: block; }

.entry-image video {
	display: block;
	width: 100%;
}

.entry-image img { border-radius: 3px; }

.posts-md .entry-image + .entry-title {
	margin-top: 0.4rem;
}

.entry-title h2,
.entry-title h3,
.entry-title h4 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.entry-title.title-sm h2,
.entry-title.title-sm h3 {
	font-size: 1.25rem;
	letter-spacing: 0;
}

.entry-title.title-sm h3 {
	font-size: 1.125rem;
}

.entry-title.title-xs h2,
.entry-title.title-xs h3 {
	font-size: 1rem;
	letter-spacing: 0;
}

.entry-title h4 {
	font-size: 0.875rem;
	letter-spacing: 0;
}

.entry-title.nott h2,
.entry-title.nott h3,
.entry-title h4 {
	text-transform: none;
}

.entry-title h2 a,
.entry-title h3 a,
.entry-title h4 a { color: #333; }

.entry-title h2 a:hover,
.entry-title h3 a:hover,
.entry-title h4 a:hover { color: #1ABC9C; }

.entry-meta {
	position: relative;
	overflow: hidden;
	/* margin-top: 10px; */
}

.text-gold {
	color: #FFD700; /* This is the hex color code for gold */
}

  /* Custom class for text with white border and smooth blinking effect */
  .text-border-blink {
	color: red; /* Original text color */
	text-shadow:
		-2px -2px 0 #fff,  
		2px -2px 0 #fff,  
		-2px 2px 0 #fff,  
		2px 2px 0 #fff;  /* White border effect */
	animation: smooth-blink 2s infinite; /* Smooth blinking effect */
}

.text-border-white {
	color: red; /* Original text color */
	text-shadow:
		-2px -2px 0 #fff,  
		2px -2px 0 #fff,  
		-2px 2px 0 #fff,  
		2px 2px 0 #fff;  /* White border effect */
}

@keyframes smooth-blink {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

.semi-transparent-background {
    background-color: rgba(0, 0, 0, 0.5); /* Black color with 50% opacity */
}

.image-hover {
	transition: transform 0.3s ease; /* Smooth transition effect */
}

.image-hover:hover {
	transform: scale(1.1); /* Increase the size of the image on hover */
}