/* 이미지 슬라이드 */
.slider-container {
  display: block;
  position: relative;
  width: 100%;
  margin: auto;
  height: 60%; 
  overflow: hidden;
}

.slide {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background-color: #000;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease-in-out; 
}

.slide.active {
  display: block;
  opacity: 1;
  z-index: 2;
}



.slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(240, 240, 240, 0.3);
  color: #ffffff;
  font-size: 10px;
  cursor: pointer;
  z-index: 20; 
  transition: background-color 0.2s;
}

.arrow-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn { 
left: 10px; 
}
.next-btn { 
right: 10px; 
}




/* 유튜브 임베딩 */
iframe {
    width: 100%;
    height: 50%;
}



/* 화살표 버튼 스타일 */
  button { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  background: rgba(0,0,0,0.5); 
  color: white; 
  border: none; 
  padding: 10px; 
  cursor: pointer; 
  }
  .next { 
  right: 0; 
  }



/* 모달창 */
        .thumb {
            cursor: pointer; }
            
        #modalImg { 
			width: 100%;
			height: 100%;
			object-fit: contain;
		}
        
        dialog::backdrop { 
            background: rgba(0,0,0,0.5); }
        
        dialog { 
            text-align: center;
            border: none; 
            max-width: 100vw;
  			max-height: 100vh;
            padding: 6%; 
            background: none; }



/* 이미지 */
.grid {
	width: 100%;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 5px;
    line-height: 0;
}

img {
    position: relative;
   	width: 100%;
    height: auto;
    line-height: 0;
}


.bold {
    display: inline;
	font-weight: 700;
    color: ghostwhite;
    font-style: italic;
}

.link {
	text-decoration: underline;
    text-underline-offset: 3px;
}







.column {
	width: 100%;
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 4%;
}


@media (max-width: 600px) {
.column {
	width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}
}






.text-one {
    text-align: left;
}


.text {
	position: absolute;
	overflow: scroll;
	
    width: 60%;
	height: 90%;
    
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
}
.text::-webkit-scrollbar {
    display: none;
}






.left {
	position: absolute;
	left: 1.2vw;
    top: 1.2vh;
}

.right {
	position: absolute;
	right: 1.2vw;
    top: 1.2vh;
}

.bottom {
 	position: absolute; 
	left: 1.2vw;
    bottom: 1.2vh;
}
.center {
 	position: absolute; 
	text-align: center;
	left: 50%;
    transform: translate(-50%, 0%);
    top: 1.2vh;
}






.three {
	width: 86%;
	height: 88%;
    
	position: absolute; 
	margin: auto;
	background-color: black;
    top :0; left: 0; right: 0; bottom: 0;

	z-index: 3;
    }
.two {
	width: 93%;
	height: 94%;
    
	position: absolute; 
	margin: auto;
	background-color: black;
    top :0; left: 0; right: 0; bottom: 0;

	z-index: 2;  
}
.one {
	width: 100vw;
	height: 100vh;
    
	background-color: black;
	position: relative;
    
    z-index: 1;
    }




.three_p {
	width: 86%;
	height: 88%;
    
	position: absolute; 
	margin: auto;
	background-color: black;
    top :0; left: 0; right: 0; bottom: 0;

	z-index: 3;
    
    background-image:  url(https://files.cargocollective.com/c2991296/2.jpg);
	background-size: 100vw;
    }
.two_p {
	width: 93%;
	height: 94%;
    
	position: absolute; 
	margin: auto;
	background-color: black;
    top :0; left: 0; right: 0; bottom: 0;

	z-index: 2;
    
    background-image:  url(https://files.cargocollective.com/c2991296/2.jpg);
	background-size: 100vw;
    }
.one_p {
	width: 100vw;
	height: 100vh;
    
	background-color: black;
	position: relative;
    
    z-index: 1;
    
    background-image:  url(https://files.cargocollective.com/c2991296/2.jpg);
	background-size: 100vw;
    }







.all {
    scale: 1.01;
    width: 100vw;
	height: 100vh;
    
    position: relative;
    margin: 2px 0px 0px 0px;
    background-color: black;
    
    color: white;
}



* { 
    margin: 0px;
}

/**
 * Loading Animation
 */

.loading[data-loading] {
	position: fixed;
	bottom: 8px; 
    left: 8px;
}

/**
 * Editor styles
 */

[data-predefined-style="true"] bodycopy {
}

[data-predefined-style="true"] bodycopy a {
}

[data-predefined-style="true"] bodycopy a:hover {
}

bodycopy a.image-link,
bodycopy a.icon-link,
bodycopy a.image-link:hover,
bodycopy a.icon-link:hover {
	border-bottom: 0;
	padding-bottom: 0;
}

[data-predefined-style="true"] h1 {
    font-family: Karla, Icons;
	font-size: 1.2rem;
	line-height: 1.7;
    text-align: left;
    word-break: keep-all;
    color: ghostwhite;
	font-weight: 400;
    letter-spacing: -0.02rem;
}

[data-predefined-style="true"] h1 a {
    text-decoration: none;
    color: ghostwhite;
}

[data-predefined-style="true"] h1 a:hover{
	color: red;
}


[data-predefined-style="true"] h2 {
    font-family: Karla, Icons;
	font-weight: 800;
	font-style: normal;
	font-size: 1.8rem;
	line-height: 1.3;
    text-align: center;
    word-break: keep-all;
    letter-spacing: 0.01rem;
}

[data-predefined-style="true"] h2 a {
    text-decoration: none;
}

[data-predefined-style="true"] h2 a:hover{
	color: ghostwhite;
}

 [data-predefined-style="true"] small {
    font-family: Karla, Icons;
	font-size: 0.95rem;
    text-align: left;
    word-break: keep-all;
    color: ghostwhite;
	font-weight: 500;
	font-style: normal;
    line-height: 1.5;
    color: grey;
}

[data-predefined-style="true"] small a {
	text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 3px;
    line-height: 1.6;
    color: grey;
}

.image-gallery {
	width: auto;
    height: 30%;
    aspect-ratio: auto;
}