
#main-page-content {
	word-break: keep-all;
	overflow-wrap: normal;
	white-space: normal;
    cursor: auto !important;
          
}

.vimeo-wrapper, .video-container, .project-embed {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}



iframe {
  width: 100%;
  height: auto;
  max-height: 90vh;
  display: block;
  margin: 0 auto;
  padding-bottom: 10px;
  border: none;
}

/* my-video: 파노라마 */
@media (max-width: 1360px) {
  .my-video {
    width: 100% !important;
    height: 350px !important; /* 필요에 따라 조정 */
    object-fit: cover; /* iframe 안의 영상이 크롭되도록 */
  }
}

@media (max-width: 1000px) {
  .my-video {
    width: 100% !important;
    height: 250px !important; 
    object-fit: cover; 
  }
}

/* my-video2: 정방형 */
.my-video2 {
margin: -10px 0 10px 0 !important;
  padding: 0 !important;
  line-height: 0;

}

@media (max-width: 1360px) {
  .my-video2 {
  margin: -40px 0 -30px 0 !important;
  padding: 0 !important;
      width: 100% !important;
      height: 800px !important;
  }
}

@media (max-width: 1000px) {
  .my-video2 {
  margin: -30px 0 -15px 0 !important;
  padding: 0 !important;
      width: 100% !important;
      height: 600px !important;
  }
}

@media (max-width: 768px) {
  .my-video2 {
   margin: 0 !important;
      padding: 0 0 5px 0 !important;
  }
}


a {
    text-decoration: none !important;
}

a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none !important;
}

/* 1. 두 단을 담는 컨테이너 설정 (Flexbox 활성화) */
.column-container {
    display: flex;
    justify-content: space-around; 
    gap: 30px; 
    padding: 0px; 
	text-decoration: none; 
}

/* 2. 각 단 (열)의 스타일 설정 */
.column {
    flex: 1;  
    min-width: 0;
    padding: 0px;
    text-decoration: none;
}

.column a{
    
    text-decoration: none; 
}

#bowyer-menu-trigger li {
    list-style: none; /* 불릿 마크 제거 */
}





.loading-message {
    font-family: "Diatype Semi-Mono Variable", Icons;
	font-style: normal;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.9);
	font-size: 1.2rem;
	line-height: 1.4;
	font-variation-settings: 'slnt' 0, 'MONO' 0.5
   
}

.separator-line {
    border: none;
    border-bottom: 0.8px solid black;
    width: 100%;
}

/* dropdown-menu 내부의 모든 <li> 요소에 적용 */
#dropdown-menu li {
    font-family: "Diatype Semi-Mono Variable", Icons;
	font-style: normal;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.9);
	font-size: 1.2rem;
	line-height: 1.4;
	font-variation-settings: 'slnt' 0, 'MONO' 0.5
   
}

#bowyer-logo-trigger {
	position: absolute;
    top: 0;
    left: 0;
    
    width: 200px;
    height: auto;
  	cursor: grab;
  	user-select: none;
  	touch-action: none;
  	will-change: transform;
  	z-index: 1000;
    opacity: 0; /* 처음에는 투명 */
  	transition: opacity 0.3s ease;
    border: none;           /* 혹시 있을 보더 제거 */
  outline: none;          /* 포커스 outline 제거 */
  display: block;         /* 인라인 요소의 하단 라인 제거 */
  image-rendering: auto;  /* 부드럽게 렌더링 */
  -webkit-tap-highlight-color: transparent; /* 모바일 탭 하이라이트 제거 */
 
    }
#bowyer-logo-trigger.dragging {
  pointer-events: none;
}

/* footer 태그 자체의 스타일*/
footer {
    position: fixed !important;
    z-index: 2147483647 !important;
    top: 0;
    left: 0;
    width: auto !important;
}

/* .bowyer 스타일 (footer 내에서 콘텐츠 중앙 정렬) */
.bowyer {
    display: flex !important; 
    justify-content: center !important;
    align-items: center !important; 
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important; 
}

.right {
	font-family: "Diatype Semi-Mono Variable", Icons;
	font-style: normal;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.9);
	font-size: 0.8rem;
	line-height: 1.4;
	font-variation-settings: 'slnt' 0, 'MONO' 0.5;
  	position: fixed;
  	bottom: 12px;             
  	left: 50%;              
  	transform: translateX(-50%);   
    z-index: 9999;         
 	pointer-events: none;   
    
    
}

/* 기본 모달 스타일 (myModal과 myModal2 모두에 적용) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: transparent !important;
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    transition: opacity 0.3s ease-in-out;
    padding: 20px;
    box-sizing: border-box;
}

/* 모달이 열렸을 때의 스타일 */
.modal.is-open {
    display: flex; 
    opacity: 1;
}

/* 모달 콘텐츠 박스 (myModal과 myModal2 모두에 적용) */
.modal-content {
    background-color: #f5f5f5;
    padding: 0;
    border-radius: 0;
    width: 90vw;
    height: 90vh;
    max-width: 1300px;
    max-height: 1000px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative; 
    animation: fadeIn 0.3s ease-out;
    overflow: hidden; 
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    
}


/* 내부 콘텐츠 래퍼: 이미지와 텍스트 섹션의 전체 패딩 */
.modal-inner-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-grow: 1; 
    gap: 20px; 
    flex-wrap: wrap; 
    align-items: flex-start; 
    padding: 20px;
    box-sizing: border-box;
}


/* 닫기 버튼 */
.close-button {
    position: absolute;
    top: 0px;
    right: 0px; 
    
    /* 크기 설정 (가로 세로 50px) */
    width: 50px !important;
    height: 50px !important;
    z-index: 9999; 
    display: flex; 
    justify-content: center;
    align-items: center;
    background-color: transparent !important; /* 배경색을 투명하게 설정 */
    border: none !important; 
    
    /* 기타 시각적 스타일 */
    border-radius: 50%;
    cursor: pointer; 
    padding: 0; 
}

/* 닫기 버튼 내부의 SVG (아이콘) 크기 조정 */
.close-button svg {
    width: 30px !important;
    height: 30px !important;
    stroke: #000;
}

.close-button svg path {
        stroke-width: 0.5;
       
    }

.close-button:hover {
    transform: rotate(90deg);
}

.close-button:focus {
    outline: none;
}

/* 2단 구조 - 이미지 섹션 (myModal에 적용) */
.modal-image-section {
    flex: 2; /* 2:1 비율 */
    display: flex;
    justify-content: flex-start; /* 가로축 (왼쪽) 정렬 */
    align-items: flex-start; /* 세로축 (상단) 정렬 - 텍스트 상단에 맞춤 */
    overflow-y: auto; 
    overflow-x: hidden; 
    box-sizing: border-box;
    padding: 0; 
    margin-right: 0px; /* 이미지 영역과 텍스트 영역 사이 간격 */
    flex-wrap: wrap; 
    align-content: flex-start;
    /* 스크롤바 숨기기 */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    height: 100%;
}

.modal-image-section a {
    text-decoration: none !important;
}

.modal-image-section::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.modal-image-section img {
    max-width: 100%;
    height: auto; /* 이미지 비율 유지 */
    object-fit: contain; 
    display: block; 
    margin-bottom: 10px; /* 이미지들 사이의 세로 간격 */
}



/* 2단 구조 - 텍스트/정보 섹션 (myModal에 적용) */
.modal-text-section {
    flex: 1; /* 2:1 비율 */
    padding: 0px 10px 10px 0px;
    margin-top: 0px;
    overflow-y: auto;
    box-sizing: border-box; 
    background-color: #f5f5f5;
    /* 스크롤바 숨기기 */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    height: 100%; 
	overflow-y: auto;
    word-break: keep-all;
	overflow-wrap: normal;
	white-space: normal;
    
}

.modal-text-section::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.modal-text-section a {
  text-decoration: none !important;  /* 밑줄 제거 */
  color: inherit;                    /* 부모 텍스트 색상 상속 */
  font-weight: inherit;   
}

.modal-text-section a,
.modal-text-section a:visited,
.modal-text-section a:hover,
.modal-text-section a:active {
  text-decoration: none !important;
}

/* 1단 레이아웃 스타일 (myModal2에 적용) */
#myModal2 .modal-inner-content {
    flex-direction: column;
    align-items: stretch; 
    height: 100%;
    overflow-y: auto;
    padding: 0;
}

/* myModal2의 내부 콘텐츠 영역 */
#myModal2 .modal-custom-content-area {
    flex: 1; 
    display: block;
    padding: 0px 20px 20px 20px;
    box-sizing: border-box;
    overflow-y: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    height: 100%;
}

#myModal2 .modal-custom-content-area::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}


#myModal2 .modal-image-section,
#myModal2 .modal-text-section {
    display: none;
}


body.modal-open {
    overflow: hidden;
}

/* 모달 등장 애니메이션 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* backdrop-filter 지원되지 않는 브라우저를 위한 대체 */
@supports not (backdrop-filter: blur(10px)) {
    .modal {
        background-color: rgba(0, 0, 0, 0.7);
    }
}

/* 모바일 반응형 조절 (max-width: 768px) */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    .modal-content {
        width: 95vw;
        height: 80vh;
        max-width: none;
        max-height: none;
    }
    .modal-inner-content { 
        flex-direction: column;
        padding: 10px; 
    	gap: 10px;
    }
    /* myModal의 2단 레이아웃을 위한 모바일 스타일 */
    #myModal .modal-image-section {
        height: 50%;
        width: 100%;
        min-height: 200px;
        padding: 0; 
        margin-right: 0;
        
    }
    
    #myModal .modal-image-section img {
        margin-bottom: 5px;
    }
    
    
    #myModal .modal-text-section {
        height: 50%; 
        width: 100%;
        padding: 0 5px 10px 5px; 
    	overflow-y: auto;
    }
    /* myModal2의 1단 레이아웃을 위한 모바일 스타일 */
    #myModal2 .modal-inner-content {
        height: 100%; 
        padding: 0; 
    }
    #myModal2 .modal-custom-content-area {
        height: 100%; 
        padding: 0 15px 15px 15px; 
    }
    .close-button {
        top: -5px;
        right: -5px; 
        width: 14px;
        height: 14px;
        
    }
    
    .close-button svg path {
        stroke-width: 0.5;
       
    }
    
    #myModal2 #main-page-content {
        margin-top: 10px;
    }
    
    #bowyer-menu-trigger {
        margin-bottom: 5px;
    }
 

   .thumbnails .thumbnail .title {
	    padding: 1rem 1rem 1rem 1rem !important;
	}
	
    .thumbnail.has_title {
        border-width: 4.4px;
        
    }
    
    iframe {
    max-height: 40vh;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    padding: 0 0 5px 0 !important;
	}
    
    .my-video {
    width: 100% !important;
    height: 200px !important; /* 필요에 따라 조정 */
    object-fit: cover; /* iframe 안의 영상이 크롭되도록 */
  	}
    
    .right {
	  bottom: 5px;  
	}
    
    .column-container {
  	display: flex;
 	gap: 20px; 
      
	}
    
}


.modal-custom-content-area .top-menu-container {
    text-align: left;
    margin-bottom: 13px;
  	font-family: "Diatype Semi-Mono Variable", Icons;
	font-style: normal;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.9);
	font-size: 1.2rem;
	line-height: 1.4;
	font-variation-settings: 'slnt' 0, 'MONO' 0.5;
    
}

.modal-custom-content-area h1 {
    cursor: default; 
    margin-bottom: 10px; 
}

.modal-custom-content-area nav {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    
}

/* ul 태그: 글머리 기호와 기본 들여쓰기(padding/margin) 제거 */
.modal-custom-content-area nav ul {
    list-style: none; /* 글머리 기호 제거 */
    padding: 0;      /* ul의 기본 왼쪽 패딩 제거 (들여쓰기 제거) */
    margin: 0;       /* ul의 기본 마진 제거 */
}

/* li 태그: li 자체의 패딩/마진 조정 (필요시) */
.modal-custom-content-area nav ul {
    padding: 0;      /* li 자체의 기본 패딩 제거 */
    margin: 0;       /* li 자체의 기본 마진 제거 */
   
}
.modal-custom-content-area nav ul li:last-child {
    
}

.modal-custom-content-area nav li {
       border-bottom: 0.8px solid #000; /* 메뉴 항목 구분선 (기존 유지) */
	
}

/* 링크 (a) 요소의 스타일 */
.modal-custom-content-area nav a,               /* 기본 링크 */
.modal-custom-content-area nav a:link,          /* 방문하지 않은 링크 */
.modal-custom-content-area nav a:visited,       /* 방문한 링크 */
.modal-custom-content-area nav a:hover,         /* 마우스 오버 시 */
.modal-custom-content-area nav a:active,        /* 클릭 중 */
.modal-custom-content-area nav a:focus {        /* 포커스 시 (키보드 탭 등) */
    text-decoration: none !important; 
    color: black !important; 
    display: block; 
    padding: 10px 0;
}


.modal-custom-content-area nav ul li a,
.modal-custom-content-area nav ul li a:link,
.modal-custom-content-area nav ul li a:visited,
.modal-custom-content-area nav ul li a:hover,
.modal-custom-content-area nav ul li a:active,
.modal-custom-content-area nav ul li a:focus {
    text-decoration: none !important;
    color: black !important;
    padding: 6px 0 4px 0;
}

.modal-custom-content-area #bowyer-menu-trigger {
    cursor: pointer;
    font-size: 2em;
    font-weight: bold;
    color: #333;
    
}

.modal-custom-content-area .dropdown-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    border-top: 1px solid #eee;
    
}

.modal-custom-content-area .dropdown-menu.is-visible {
    display: block; 
    
}

.modal-custom-content-area .dropdown-menu li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.modal-custom-content-area .dropdown-menu li:last-child {
    border-bottom: none;
}

.modal-custom-content-area .dropdown-menu a {
    text-decoration: none;
    color: #555;
    font-size: 1.1em;
    display: block;
    padding: 5px 0;
}

.modal-custom-content-area .dropdown-menu a:hover {
    color: #000;
}

.modal-custom-content-area #main-page-content {
    margin-top: 0px;
    padding: 0px;
    
    background-color: #f5f5f5;
}

#main-page-content li {
    margin-left: 0px; 
}

/* 1. 기본 리스트 스타일 제거 */
.custom-numbered-list {
    list-style: none; 
    counter-reset: my-custom-counter; 
    padding-left: 0;
}

/* 2. 각 리스트 아이템에 커스텀 숫자 추가 */
.custom-numbered-list li {
    counter-increment: my-custom-counter;
    position: relative; 
    margin-bottom: 5px;
}

/* 3. 숫자를 <li> 앞에 표시하고 형식 지정 */
.custom-numbered-list li::before {
    content: counter(my-custom-counter, decimal) ". "; /* 카운터 값을 두 자리 숫자로 표시 (. 추가) */
    position: absolute; 
    left: 0;
    width: 2em;
    text-align: left; 
    margin-right: 0.5em; 
    color: #333; 
}

/* 4. <li> 내용이 숫자를 피하도록 패딩 추가 */
.custom-numbered-list li {
    padding-left: 2.5em; 
}

/**
 * Content
 */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none !important; 
    width: 0 !important;      
    height: 0 !important;
}

body {
    -ms-overflow-style: none; 
	scrollbar-width: none; 
}

body {
	background-color: #fff;
    color: #000;
    scrollbar-width: none; 
}


a:active {
	opacity: 0.7;
}

.page a.active {
	opacity: 0.4;
}

i,
em {
	font-style: italic;
}

b,
strong {
	font-weight: bolder;
}

sub,
sup {
	position: relative;
	vertical-align: baseline;
}

sub {
	top: 0.3em;
}

sup {
	top: -0.4em;
}

s {
	text-decoration: line-through;
}

img {
	border: 0;
    padding: 0;
}

ul,
ol {
	margin: 0;
	padding: 0 0 0 1em;
}

blockquote {
	margin: 0;
	padding: 0 0 0 2em;
}

hr {
	background: rgba(127, 127, 127, 0.2);
	border: 0;
	height: 1px;
	display: block;
}

.content img {
	float: none;
	margin-bottom: .5em;
}

.gallery_image_caption {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
	line-height: 1.3;
	font-family: 'Neue Haas Grotesk', Icons;
	font-style: normal;
    font-weight: 400;
	color: rgba(41, 41, 41, 0.3);
}

/**
 * Loading Animation
 */

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

/**
 * Editor styles
 */
[data-predefined-style="true"] bodycopy {
	font-size: 2rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.9);
	font-family: "Neue Haas Grotesk", Icons;
    font-style: normal;
	line-height: 1.3;
    letter-spacing: 0.01em;
}

[data-predefined-style="true"] bodycopy a {
	color: rgba(0, 0, 0, 0.9);
	padding-bottom: 0.1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.9);
	text-decoration: none;
}

[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: "Neue Haas Grotesk", Icons;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 2rem;
    line-height: 1.2;
	color: rgba(0, 0, 0, 0.9);
    letter-spacing: 0.01em;
}

[data-predefined-style="true"] h1 a {
	color: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgb(41, 41, 41);
}

[data-predefined-style="true"] h2 {
	font-family: "Diatype Semi-Mono Variable", Icons;
    font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	color: rgba(0, 0, 0, 0.9);
	font-size: 1.2rem;
	line-height: 1.4;
	font-variation-settings: 'slnt' 0, 'MONO' 0.5;
    text-decoration: none !important;
}

[data-predefined-style="true"] h2 a {
	color: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgb(41, 41, 41);
    text-decoration: none !important;
}

[data-predefined-style="true"] small {
	display: inline-block;
	font-size: 1.2rem;
    line-height: 1.4;
	font-family: "Diatype Semi-Mono Variable", Icons;
	font-style: normal;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.9);
	font-variation-settings: 'slnt' 0, 'MONO' 0.5;
}

[data-predefined-style="true"] small a {
	color: rgba(0, 0, 0, 0.9);
	border-bottom-width: 0em;
    text-decoration: none !important;
}

/**
 * Breakpoints
 */
[data-css-preset] .page {
    background-color: initial /*!page_bgcolor*/;
}

.mobile .page,
[data-css-preset].mobile .page {
	position: relative;
	min-height: 10px;
    max-width: 100%;
	width: 100%;
	background-color: transparent /*!page_bgcolor*/;
}

[data-css-preset] .container {
	margin-left: 0 /*!content_left*/;
	margin-right: auto /*!content_left*/;
	text-align: left /*!text_left*/;
}

[data-css-preset] body {
	background-color: rgb(245, 245, 245)/*!body_bgcolor*/;
}

[data-css-preset] .container_width {
	width: 100% /*!content_left*/;
}

[data-css-preset] .content_padding {
	padding-top: 1.2rem /*!main_margin*/;
	padding-bottom: 1.2rem /*!main_margin*/;
    padding-left: 1.2rem /*!main_margin*/;
	padding-right: 1.2rem /*!main_margin*/;
}

[data-css-preset] text-limit {
	display: inline-block /*!text_width*/;
	max-width: 66rem/*!text_width*/;
}

/**
 * Thumbnails
 */
/* 개별 썸네일 블록에 테두리 적용 */
.thumbnail.has_title {
    border-right: 0.8px solid #000 !important; 
    border-bottom: 0.8px solid #000 !important; 
    box-sizing: border-box !important;
}

/* 그리드 레이아웃의 마지막 열 요소에는 오른쪽 테두리 제거 */
/* (현재 이미지 기준으로 3열 그리드 가정) */
.thumbnail.has_title:nth-child(3n) {
    border-right: none !important; 
}

/* 마지막 행의 요소에는 아래쪽 테두리 제거 */
/* (현재 이미지 기준으로 3열 그리드 가정. 마지막 3개의 썸네일에 적용) */
/* 주의: 썸네일의 총 개수에 따라 nth-last-child(-n + X)의 X 값을 조정해야 할 수 있습니다. */
.thumbnail.has_title:nth-last-child(-n + 3) {
    border-bottom: none !important;
    
}



div[thumbnails] {
	justify-content: flex-start;
}

[data-css-preset] .thumbnails {
   	background-color: transparent/*!thumbnails_bgcolor*/;
}

[data-css-preset] .thumbnails_width {
    width: 100%/*!thumbnails_width*/;
}

[data-css-preset] [thumbnails-pad] {
    padding: 0.5rem/*!thumbnails_padding*/;
}

[data-css-preset] [thumbnails-gutter] {
    margin: -1rem/*!thumbnails_padding*/;
}

[data-css-preset] [responsive-layout] [thumbnails-pad] {
    padding: 0.25rem/*!responsive_thumbnails_padding*/;
}

[data-css-preset] [responsive-layout] [thumbnails-gutter] {
    margin: -0.5rem/*!responsive_thumbnails_padding*/; 
}

.thumbnails .thumb_image {
	outline: 0px solid rgba(0,0,0,.12);
    outline-offset: -1px;
    position: relative;
}

.thumbnails .title {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 1.2rem;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.9);
    font-family: "Diatype Semi-Mono Variable", Icons !important;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    font-variation-settings: 'slnt' 0, 'MONO' 0.5;
    text-align: left !important; /* 텍스트 자체를 왼쪽 정렬로 확실히 지정 */
}

.thumbnails .tags {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    line-height: 1.3;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.35);
	font-family: "Diatype Semi-Mono Variable", Icons;
	font-style: normal;
}

.thumbnails .tags a {
	border-bottom: 0;
    color: rgba(0, 0, 0, 0.35);
    text-decoration: none;
}

.thumbnails .has_title .tags {
	margin-top: 1.2rem;
}

/**
 * Thumbnail Hover
 */
.thumbnails .thumbnail > a {
    overflow:hidden;
	position: relative;
}

.thumbnails .thumbnail .title {
	background: rgba(245, 245, 245, 1) !important;
    color: rgba(0, 0, 0, 1) !important;
    display: flex !important; 
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9 !important;
    opacity: 0 !important;
    box-sizing: border-box !important;
    justify-content: flex-start !important; 
    align-items: flex-start !important; 
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.thumbnails .title span {
	margin: 0 !important; 
	display: inline-block; 
    text-align: left !important; 
}



/**
 * Site Menu
 */
[data-css-preset] #site_menu_button {
    color: rgba(0, 0, 0, 0.9);
    line-height: 1;
    font-size: 28px /*!site_menu_button*/;
    padding: 6px;
    line-height: 1;
    background: rgba(33, 32, 46, 0);
    position: fixed;
    top: .6rem /*!site_menu_button*/;
	right: .6rem /*!site_menu_button*/;
}

body.mobile #site_menu_button {
	margin: -6px;
    font-size: 34px;
}

#site_menu_button.custom_icon {
	width: 40px;
    height: auto;
}

#site_menu_button.active {
	display: none;
}

/**
 * Site Menu
 */
#site_menu {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
    background: rgba(20, 20, 20, 0.95);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	padding: 20px 30px 90px 30px;
	max-width: 400px;
	min-width: 300px;
    text-align: left;
	display: flex;
	justify-content: flex-start;
}

body.mobile #site_menu {
	width: 100%;
}

#site_menu .page-link a {
	color: rgba(255, 255, 255, 0.75);
}

#site_menu .set-link > a {
	color: rgba(255, 255, 255, 0.75);
	font-weight: bold;
}

#site_menu a:active {
	opacity: .7;
}

#site_menu a.active {
	opacity: .4;
}

#site_menu .close {
	display: none;
	color: rgba(255, 255, 255, 0.4);
	line-height: .85em;
	font-size: 45px;
}

body.mobile #site_menu .close {
	display: block;
	font-size: 50px;
    line-height: 1em;
}

#site_menu .break {
	height: 28px;
}

#site_menu .indent {
	margin-left: 28px;
}