/* 채널 목록 — PC only, 메인 2단 비율 재사용 */

.channel-list-page .short-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.channel-list-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f5f5f5;
}

.channel-list-head .channel-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  font-size: 18px;
}

.channel-list-head .channel-avatar img {
  width: 48px;
  height: 48px;
}

.channel-list-name {
  display: block;
  font-size: 18px;
  font-weight: 740;
  letter-spacing: -0.03em;
}

.channel-list-kind {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.channel-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
}

.channel-pager a,
.channel-pager span {
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 5px;
  color: #666;
  font-size: 13px;
}

.channel-pager a:hover {
  color: var(--brown);
}

.channel-pager .is-current {
  background: var(--brown);
  color: #fff;
  font-weight: 720;
}

.channel-pager .is-disabled {
  color: #d0d0d0;
}
