/* ----- 메인 컨테이너 ----- */
.all-section {
  display: flex;
  justify-content: center;
}

.main-con {
  display: flex;
  justify-content: space-between;
  gap: 20px; 
  min-height: 100vh;
}


.title-box {
	display: flex;
	justify-content: center;
}

.board {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 8px;
}

.column {
  background: white;
  padding: 15px;
  border-radius: 10px;
  width: 900px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent; /* 기본 투명한 테두리 */
 	display: flex;
  flex-direction: column; /* 세로 방향으로 정렬 */
  min-height: 500px;
  box-sizing: border-box;
}

.gray {
  border-color: #448cff; /* 보라색 테두리 */
}

.column .task-title {
  display: flex;
  align-items: center;
}

.column-title {
	font-size: 28px;
	gap: 5px;
  padding-bottom: 34px;
}

.task-title {
	font-size: 24px;
	font-weight: bold;
}

/* 컬러별 상단 경계선 스타일은 제거 */
.column .task {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #d3d5d7; /* 각 작업 항목의 경계선 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 카드 모양의 그림자 효과 */
  margin-bottom: 38px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.column .task:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.comment-count {
  font-size: 14px;
  color: gray;
  margin-top: 5px;
}

.new-task {
  color: #888;
  cursor: pointer;
  margin-top: auto; /* 공간이 남을 경우 아래로 밀어내는 역할 */
}

.new-task:hover {
  transform: translateY(5px);
  color: transparent; /* 글자 색을 투명하게 */
  background: linear-gradient(45deg, #448cff, #1B68E4); /* 그라디언트 효과 */
  background-clip: text; /* 글자에만 그라디언트 적용 */
}
/* 팀 리더 스타일 */
.team-lead {
  font-size: 14px;
  color: #555;
  margin-top: 28px;
  font-weight: bold;
}

.team-cnt {
  font-size: 12px;
  color: #555;
  margin-top: 12px;
  font-weight: bold;
}

