/* 채널.H 섹션 스타일 */
#channel_h_area {
  width: 1160px;
  margin: 0 auto;
  position: relative;
}

.channel_h_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.channel_h_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  height: 36px;
}

.channel_h_title-link {
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.3s ease;
}

.channel_h_description {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* 썸네일 리스트 영역 */
.channel_h_list_area {
  width: 100%;
  overflow: hidden;
}

.channel_h_list {
  display: flex;
  gap: 20px;
}

.thumb {
  width: 275px;
  position: relative;
}

.thumb img {
  width: 275px;     
  height: 275px; 
  object-fit: cover;
  border-radius: 8px;
}

.thumb span {
  width: 100%;
  border-radius: 0 0 8px 8px;
}

.thumb p {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


.channel_h_slider_container {
  position: relative;
}

.channel_h_slider_container .lSAction > a {
  top: 40%;
}


.channel_h_slider .thumb {
  position: relative;
  width: 100%;
  height: 275px;
}

.channel_h_slider .thumb a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.channel_h_slider .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* 그라데이션 오버레이 */
.channel_h_slider .thumb a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(136, 136, 136, 0) 40%, 
    rgba(136, 136, 136, 0.85) 70%);
  border-radius: 8px;
  z-index: 1;
}

.channel_h_slider .thumb a:hover::before {
  filter: brightness(0.8);
}

/* 타이틀 위치 조정 */
.channel_h_slider .thumb .channel-h-title {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 16px;
  z-index: 2;
  padding: 0 16px 20px;
  text-align: center;
}

.channel_h_slider .thumb .channel-h-title p {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
