.banner-header {
	background-image: url(/img/page/u/boards/gen-img/top-banner.png?v=250801);
	min-height: 260px;
	margin-bottom: 20px !important;
	background-position-x: 0;
}

.timetable td {
	padding: 10px;
}

.timetable tr:hover {
	background-color: #f7f7f7;
  cursor: pointer;
}

table tbody .ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}
	
table col:nth-child(1) {
	width: 5%;
}

table col:nth-child(2) {
	width: 80%;
}

table col:nth-child(3) {
	width: 10%;	
}

table col:nth-child(4) {
	width: 5%;
}

table td:nth-child(2) {
	text-align: left;
}

.none-img {
  font-size: 16px;
  text-align: center;
  line-height: 400px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  padding-top: 16px;
}

.gallery li {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px !important;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
}

.gallery li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery li:hover img {
  transform: scale(1.1); /* 살짝 확대 */
}

.gallery .overlay {
  position: absolute;
  top: calc(100% - 52px);
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6); /* 반투명 블랙 배경 */
  backdrop-filter: blur(4px);     /* 블러 효과 */
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  transition: opacity 0.3s ease, top 0.5s ease;
  padding: 8px 12px;
}

.gallery .overlay .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.gallery .overlay .header .info {
  overflow: hidden;
}

.gallery .overlay .header .info .title {
	white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery .overlay .content {
	display: none;
	padding-top: 16px;
  height: calc(100% - 64px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery li:hover .content {
	display: block;
}

.gallery li:hover .overlay {
	top: 0;
}

.overlay a {
	color: #fff;
	font-size: 16px;
	padding: 10px;
}

.overlay a:after {
	content: "\e0f2";
}

.description {
	font-size: 18px;
	line-height: 28px;
}

.title h1 {
	font-size: 24px;
	font-weight: bolder;
}

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

@media ( max-width : 480px) {
	table tbody .ellipsis {
	    max-width: calc(100vw - 220px);
	}
	
	table col:nth-child(1) {
		width: 12%;
	}
	
	table col:nth-child(2) {
		width: 45%;
	}
	
	table col:nth-child(3) {
		width: 21%;	
	}
	
	table col:nth-child(4) {
		width: 12%;
	}
}

@media ( min-width : 480px) {
	table tbody .ellipsis {
		max-width: calc(100vw - 220px);
	}
		
	table col:nth-child(1) {
		width: 7%;
	}
	
	table col:nth-child(2) {
		width: 74%;
	}
	
	table col:nth-child(3) {
		width: 12%;	
	}
	
	table col:nth-child(4) {
		width: 7%;
	}
}

@media ( min-width : 768px) {
	table tbody .ellipsis {
	    max-width: 455px;
	}
}

@media ( min-width : 1024px) {
	table tbody .ellipsis {
	    max-width: 530px;
	}
}

@media ( min-width : 1280px) {
	table tbody .ellipsis {
	    max-width: 645px;
	}
}