@charset "UTF-8";

/* 기본 색상 */
:root {
	--main-color: #ddd;
	--accent-color: #9d8aae;
	--dark-main-color: #f34845;
	--text-bright-color: #fff;
	--icon-color: #fff;
	--icon-bk-color: #ddd;
	--gray-color: #ddd;
	--large-width: 1000px;
	--middle-width: 800px;
}

/* 기본 설정: 폰트 크기 */
@media (max-width: 599px) {
	:root {
		font-size: 14px;
	}
}

@media (min-width: 600px) and (max-width: 799px) {
	:root {
		font-size: 16px;
	}
}

@media (min-width: 800px) {
	:root {
		font-size: 18px;
	}
}

body {font-size: 16px;
}

/* 기본 설정: 페이지 전체 */
body {
	margin: 0;
	font-family: '맑은 고딕',
		'Apple SD Gothic Neo','sans-serif';
}

header {
	text-align: center;
	padding: 10px 0 20px;
  position: relative;   
  z-index: 10;          
  background: transparent;
}

header h1 {
	font-size: 1.6rem;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

/* logo img */
#logo a img {
    width: 40%;
    display: block;
    height: auto;
    margin: 0 auto;
}

/* 기본 nav 레이아웃 */
nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
}

nav ul li {
	position: relative;
}

nav ul li a {
	display: block;
	text-decoration: none;
	color: #000;
	font-size: 0.95rem;
	line-height: 1;
	padding: 6px 0;
	transition: color 0.2s ease;
}

nav ul li a:hover {
	color: var(--main-color);
}

/* Header Dropdown Menu */
nav ul li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 130px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 10px;
    box-shadow: none;
    z-index: 20;
    padding: 5px 0;
    text-align: center;
    transition: all 0.3s ease;
}

nav ul li .dropdown-menu li {
   color: #333;
   padding: 10px 16px;
   display: block;
   transition: background 0.3s, color 0.3s;
}

nav ul li .dropdown-menu li a {
   color: #111;
   padding: 6px 12px;
   font-size: 0.85rem;
   display: block;
   transition: background 0.3s, color 0.3s;
   border-radius: 6px;
}

nav ul li .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.4);
    color: var(--dark-main-color);
}

nav ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

nav ul li.dropdown:hover .dropdown-menu {
   opacity: 1;
   visibility: visible;
   transform: translateX(-50%) translateY(0);
}

:root {
  --wave-h: 180px;   
  --liftC: 320px;    
}

/* conA : 히어로 배너 */

:root {
  --wave-h: 160px;   
  --liftC: 0px;      
}

.conA {
  position: relative;
  width: 100%;
  overflow: visible;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 75vh;            
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.hero-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* conB : 곡선 배경 */
.wave-bottom {
  position: absolute;
  left: 0;
  bottom: -5px;              
  width: 100%;
  height: var(--wave-h);
  display: block;
  color: var(--main-color);
  z-index: 2;
  pointer-events: none;
}
.wave-bottom path {
  fill: #000;
}

.glass-wave {
  position:absolute; left:0; right:0; bottom:0;
  width:100%; height:var(--wave-h);
  transform: translateY(-6px); 
  mix-blend-mode: screen;        
  pointer-events:none;
  z-index:4;                     
}

/* conB : 곡선 배경 */
.conB {
  position: relative;
  background: #000;
  color: var(--text-bright-color);
  margin-top: calc(-1 * var(--wave-h) + 1px);
  padding: calc(var(--wave-h) + 40px) 0 80px;
  overflow: hidden;
}

/* conC */
.conC {
  position: relative;
  background: #000;
  margin-top: calc(-1 * var(--liftC));
  padding: 28px 0 56px;         
  z-index: 3;
}

.conC-inner {
  width: min(1200px, 92vw);      
  margin: 0 auto;
  text-align: center;
}

.conC-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  color:#f0f0f0;
}

.conC-desc {
  margin: 0 0 24px;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.6;
  color:#f0f0f0;
}

.pumpkin-image {
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  overflow: hidden;
  background: #111;             
  width: min(1024px, 90vw);     
}

.pumpkin-image img {
  display: block;
  width: 100%;
  height: auto;                  
}

/* conC 모바일 */
@media (max-width: 768px){
  .conC{ padding: 24px 0 44px; }
  .pumpkin-image{ width: 94vw; border-radius: 12px; }
}

@media (max-width: 768px) {
  .hero-banner {
    height: auto;          
  }
  .hero-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;     
  }
}

/* footer */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; 
}

footer {
	color: #323232;
	word-break: keep-all;
	overflow-wrap: normal;
	font-size: 13px;
	background: #ffffff;      
	position: relative;
	z-index: 100;
	box-shadow: 0 -18px 30px rgba(0, 0, 0, 0.25); 
}

footer::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 55px;          
	bottom: 0;
	background: #ffffff;
	z-index: 0;
}

footer::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -35px;              
	transform: translateX(-50%);
	width: 140%;
	height: 90px;             
	background: #ffffff;
	border-top-left-radius: 50% 100%;
	border-top-right-radius: 50% 100%;
	box-shadow: 0 -13px 18px rgba(166, 166, 166, 0.23);
	z-index: 1;            
}


footer .container {
	padding: 32px 20px;
	max-width: var(--large-width);
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

/* PC-footer: 구조 레이아웃 [width=768px]를 기준으로 */
@media (min-width: 768px) {
	footer .container {
		display: flex;
		flex-wrap: wrap;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
		align-items: flex-start; 
    	gap: 30px; 
	}
	.footA {
		flex: 0 0 40%;
		min-width: 260px;
	}
	.footB {
		flex: 1;
		display: flex;
		gap: 30px;
	}
	.footC {
		flex: 0 0 100%;
	}
}

/* Mobile footerA 사이트 정보 */
.footA {
	margin-bottom: 30px;
}
.footA h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-family: 'Montserrat',sans-serif;
	font-size: 26px;
	letter-spacing: 0.2em;
	white-space: nowrap;
	word-break: keep-all;
}
.footA p {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 13px;
	line-height: 1.5;
}
.footA a {
	color: inherit;
	text-decoration: none;
}


/* Mobile footerB 메뉴 */
.footB div {
	margin-bottom: 20px;
}
.footB h3 {
	margin-top: 0;
	margin-bottom: 10px;
	border-bottom: solid 1px currentColor;
	font-size: 14px;
	white-space: nowrap;
}
.footB ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block !important;
}

.footB li {
	display: block;          
	margin-bottom: 6px;       
}

.footB a {
	display: block;
	padding: 2px 0;
	color: inherit;
	font-size: 12px;
	text-decoration: none;
	word-break: keep-all;
	white-space: normal;
	text-align: left;
}
.footB a:hover {
	background-color: rgba(0,0,0,0.3);
}

/* PC-footerB:[width=768px]를 기준으로 */
@media (min-width: 768px) {
	.footB {
		display: flex;
	}
	.footB div {
		flex: 1;
	}
}


/* footerC 저작권 */
.footC {
	font-size: 12px;
	text-align: center;
	font-family: 'Montserrat',sans-serif;
}


/* footerD: sns 메뉴 */
.footD {
	margin-top: 20px;
}
.footD ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.footD a {
	display: inline-flex;             
	align-items: center;             
	justify-content: center;          
	width: 36px;
	height: 36px;
	box-sizing: border-box;
	padding: 0;
	border: 1.5px solid currentColor;
	border-radius: 50%;                              
	color: inherit;                  
	font-size: 15px;                  
	text-decoration: none;            
	line-height: 1;              
	text-align: center;               
	transition: background-color .25s ease, transform .15s ease;
}
.footD a:hover {
	background-color: rgba(0,0,0,0.3);
	transform: translateY(-1px);
}

/* 모바일 footD */
@media (max-width: 767px) {
	.footD ul {
		justify-content: center;   
		gap: 6px;                  
	}

	.footD a {
		width: 32px;               
		height: 32px;
		font-size: 14px;           
		border-width: 1.2px;       
	}
}

/* aboutA */
body {
  margin: 0;
  padding: 0;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  color: #333;
}

.about-banner {
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  box-sizing: border-box;

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.about-wrapper.show {
  opacity: 1;
  transform: translateY(0);
}

.about-title-area {
  text-align: center;
  margin-bottom: 60px;
}


.about-main-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-title-line {
  width: 80%;
  max-width: 500px;
  height: 1px;
  background-color: #b5b5b5;
  margin: 0 auto;
}

.about-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 60px;
}

.about-image-box {
  width: 330px;
  height: 330px;
  background-color: #d9d9d9;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text 부분 */
.about-text-box {
  width: 500px;
  line-height: 1.65;
}


.about-artist-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.about-artist-tagline {
  font-size: 14px;
  color: #ff3822c8;
  margin-bottom: 20px;
}

.about-artist-desc {
  font-size: 15px;
  margin-bottom: 16px;
}

/* Timeline Butten */
.about-timeline-area {
  text-align: center;
  margin-top: 40px;
}


.timeline-btn {
  background-color: #d1cece;
  border: none;
  padding: 10px 26px;
  border-radius: 18px;
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.timeline-btn:hover {
  background-color: #b8b6b6;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* aboutA 모바일 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .about-image-box {
    width: 260px;
    height: 260px;
  }

  .about-text-box {
    width: 100%;
    max-width: 600px;
  }

  .about-wrapper {
    padding: 50px 16px;
  }

  .about-main-title {
    font-size: 26px;
  }

  .about-artist-name {
    font-size: 20px;
  }

  .about-artist-desc {
    font-size: 14px;
  }
}

/* aboutB page 본문 영역*/
.timeline {
    background-color: #ffffff;
    padding-bottom: 80px;
}

#timeline {
    width: 800px;
    margin: 0 auto;
}

.section-header {
    margin-top: 60px;
    margin-bottom: 20px;
}

.section-header .headline-with-line {
    font-size: 20px;
    color: #000000;
    margin-bottom: 10px;
}

.section-header .title-line {
    width: 100%;
    height: 1px;
    background-color: #ff3822c8;
}

.timeline-row {
    display: flex;
    align-items: flex-start;
    margin-top: 50px;
    gap: 30px;
}

.timeline-b,
.timeline-d,
.timeline-f {
    flex-direction: row-reverse;
}

.section-1929 .timeline-text,
.section-1965 .timeline-text,
.section-2010 .timeline-text {
    text-align: right;
}

.timeline-img img {
    width: 250px;
    border-radius: 5px;
    display: block;
}

.timeline-text {
    flex: 1;
	margin-top: 40px;
}

.timeline-text h4,
.timeline-text h5 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    margin-top: 0;
}

.timeline-text ul {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    padding-left: 0;
    list-style: none;
}

.timeline-text p {
    font-size: 15px;
    line-height: 26px;
    color: #666;
    margin-bottom: 20px;
}

.text-underline,
.section-divider {
    width: 100%;
    height: 1px;
    background-color: #ff3822c8;
    border: 0;
    margin: 40px 0;
}

.skill-img {
    width: 250px;
    display: block;
}

#timeline a {
    color: #ff3822c8;
    text-decoration: none;
    font-weight: 600;
}

/* aboutB page 모바일 */
@media (max-width: 768px) {
    #timeline {
      width: 90%;
    }

    .timeline-row {
      flex-direction: column;
      align-items: center;
    }

	.timeline-b,
    .timeline-d,
    .timeline-f {
      flex-direction: column;
    }

    .timeline-img {
    	width: 100%;
    	display: flex;
    	justify-content: center;  
	}

    .timeline-img img,
    .skill-img {
    	width: 80%;
    	max-width: 260px;
    	display: block;
	}

    .timeline-text {
       width: 100%;
    }

    .timeline-text h4,
    .timeline-text h5 {
      font-size: 17px;
      text-align: center;
    }

    .timeline-text ul {
      text-align: center;
    }

    .timeline-text p {
      font-size: 14px;
      text-align: center;
    }
}

/* artwork1 */
/*.artwork-hero .hero-banner {
  height: 75vh;  
}*/

.artwork-featured {
  padding: 40px 5vw 120px;
  background: transparent;
}

.artwork-grid {
  max-width: 850px; 
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 26px; 

  background: none;
  padding: 0;
  box-shadow: none;
}

.artwork-column {
  display: flex;
  flex-direction: column;
  row-gap: 26px;
}

.art-card {
  display: block;
  position: relative;
  z-index: 30;

  width: 100%;
  border-radius: 26px;
  background: transparent;        
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
}

.art-card.lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}
.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;                  
  border-radius: inherit;          
}

.art-card-image-main {
  background: transparent;
}

.column-left  .art-card:nth-child(1),
.column-center .art-card:nth-child(1),
.column-right .art-card:nth-child(1) {
  height: 260px;
}

.column-left .art-card:nth-child(2) { height: 420px; }
.column-left .art-card:nth-child(3) { height: 180px; }
.column-left .art-card:nth-child(4) { height: 350px; }
.column-left .art-card:nth-child(5) { height: 186px; }

.column-center {
  margin-top: 0;
}
.column-center .art-card:nth-child(2) { height: 210px; }
.column-center .art-card:nth-child(3) { height: 460px; }
.column-center .art-card-image-main { height: 492px; }

.column-right {
  margin-top: 0;
}
.column-right .art-card:nth-child(2) { height: 390px; }
.column-right .art-card:nth-child(3) { height: 230px; }
.column-right .art-card:nth-child(4) { height: 542px; }

@media (max-width: 768px) {

  .artwork-featured {
    padding: 40px 5vw 72px;
    background: #ffffff;
  }

  .artwork-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .column-center,
  .column-right {
    margin-top: 0;
  }

  .art-card {
    border-radius: 20px;
  }

  .artwork-column .art-card,
  .art-card-image-main {
    height: auto !important;
  }

  .art-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* detail_01 */
.work-detail-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 120px;
  box-sizing: border-box;
}

.work-detail-inner {
  display: flex;
  gap: 48px;
  align-items: center;   
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.work-detail-inner.show {
  opacity: 1;
  transform: translateY(0);
}

/* 왼쪽 이미지 영역 */
.work-detail-image {
  flex: 0 0 48%;
  max-width: 500px;       
  width: 100%;
}

.work-detail-image img {
  width: 100%;
  height: auto;          
  object-fit: contain;    
  display: block;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);

  opacity: 0;
  transform: translate(-12px, 16px);
  animation: workImageIn 0.8s ease-out forwards;
}

/* 오른쪽 텍스트 영역 */
.work-detail-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;  
  opacity: 0;
  transform: translateY(16px);
  animation: workTextIn 0.9s ease-out forwards;
}

.work-detail-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
}

.work-detail-meta {
  font-size: 13px;
  color: #888;
  margin: 0 0 24px;
}

.work-detail-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  white-space: pre-line;
}

/* 반응형:  detail_01 */
@media (max-width: 768px) {
  .work-detail-inner {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .work-detail-image {
    max-width: 100%;
  }

  .work-detail-title {
    font-size: 22px;
  }

  .work-detail-desc {
    font-size: 14px;
  }
}

/* 모션 애니메이션 */
@keyframes workImageIn {
  0% {
    opacity: 0;
    transform: translate(-12px, 16px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes workTextIn {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* artwork2 */
.series-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 120px;
  box-sizing: border-box;
}

.series-row {
  width: 100%;
  display: grid;
  gap: 22px;
  margin-bottom: 52px;
}

.series-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.series-feature-text {
  position: relative;
  padding-left: 28px;
  display: flex;
  align-items: center;
}

.series-feature-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 10px;
  background: #000;
}

.series-text-block {
  max-width: 100%;
}

.series-headline {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  font-weight: 800;
  color: #000;
}

.series-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0,0,0,0.45);
}

.row-text {
  grid-template-columns: 1fr 1fr 1fr;
}

.small-img {
  align-self: flex-start;
  height: 150px;
}

.mid-img {
  align-self: flex-start;
  height: 300px;
}

/* artwork2 반응형 */
@media (max-width: 900px) {

  .row-3 {
    grid-template-columns: 1fr 1fr;
  }

  .row-3 .series-item:last-child {
    grid-column: span 2;
  }

  .row-text {
    grid-template-columns: 1fr 1fr;
  }

  .series-feature-text {
    grid-column: span 2;
    margin-top: 16px;
  }
}

@media (max-width: 768px) {

  .row-3,
  .row-text {
    grid-template-columns: 1fr;
  }

  .series-feature-text {
    padding-left: 20px;
  }

  .series-feature-text::before {
    width: 8px;
  }

  .series-headline {
    font-size: 20px;
  }

  .series-body {
    font-size: 13px;
  }

  .small-img {
    height: 180px;
  }

  .mid-img {
    height: 260px;
  }
}

/* exhibition = showcase */
.exhibition-section {
  max-width: 1200px;
  margin: 80px auto 120px;
  padding: 0 24px;
  text-align: center;
}

.exhibition-label {
  display: inline-block;
  margin: 0 auto 24px;
  padding: 8px 32px;
  border-radius: 999px;
  background-color: #f3f3f3;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.exhibition-divider {
  border: none;
  border-top: 1px solid #dcdcdc;
  margin: 0 auto 40px;
}

.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;  /* row gap, column gap */
}

.exhibition-card {
  display: flex;
  background-color: #f8f8f8;
  border-radius: 28px;             /* 외곽 둥글게 */
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exhibition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.exhibition-thumb {
  flex: 0 0 40%;
  position: relative;
}

.exhibition-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exhibition-info {
  flex: 1;
  padding: 20px 24px;
  background-color: #ffffff;
  text-align: left;
}

.exhibition-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.exhibition-meta {
  margin: 0 0 10px;
  font-size: 12px;
  color: #777777;
}

.exhibition-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #555555;
}

/* exhibition 반응형 */
@media (max-width: 900px) {
  .exhibition-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .exhibition-section {
    margin: 60px auto 80px;
    padding: 0 16px;
  }

  .exhibition-card {
    flex-direction: column;   
  }

  .exhibition-thumb {
    flex-basis: auto;
    height: 180px;            
  }

  .exhibition-info {
    padding: 16px 18px;
  }

  .exhibition-title {
    font-size: 16px;
  }

  .exhibition-desc {
    font-size: 12px;
  }
}

/* conE: 비디오 */
.conE {
	background-color: var(--main-color);
	color: var(--text-bright-color);
}

.conE .text {
	padding: 20px;
}

.conE h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}

.conE p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}

.conE video {
	width: 100%;
	position: center;
}