
/* 모바일 */
@media screen and (max-width: 768px) {
    .team-section {
        padding: 60px 20px;
    }
    
    .team-list {
    
    	gap: 20px !important;
        justify-content: center;  /* ✅ 가운데 정렬 */
    }
    
    .team-item {
        flex: 0 0 221px;
    }
    
    
}
 

.team-section {
    padding: 125px 0 150px 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;  /* ✅ 추가 */
}

/* 상단 */
.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 61px;
}


.team-nav {
    display: flex;
    gap: 10px;
}


/* 리스트 */
.team-list {
    display: flex;
    flex-wrap: nowrap;  /* ✅ wrap → nowrap */
    text-align: center;
    gap: 270px;
    transition: transform 0.4s ease;
    width: 100%;  /* ✅ 추가 */
}

.team-item {
    flex: 0 0 221px;
	text-align: center;
}

/* 카드 */
.team-item img {
    width: 221px;
    height: 221px;
    object-fit: cover;
    margin-bottom: 25px;
}

.name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.exp {
    font-size: 12px;
    color: #777;
}

.nav-btn {
	width: 33px;
	height: 33px;
	background: #F9F9F9;
	display: flex;
  	align-items: center;
  	justify-content: center;
  	
 	 background-size: 8px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.nav-btn.prev {
  background-image: url('/html/images/main/section3/prev.png');
}

.nav-btn.next {
  background-image: url('/html/images/main/section3/next.png');
}


.nav-btn.next:hover {
  background-image: url('/html/images/main/section3/hover_next.png');
}

.nav-btn.prev:hover {
  background-image: url('/html/images/main/section3/hover_prev.png');
}


.nav-btn:hover {
	border: 1px solid #433CC2;
	box-shadow: 0px 4px 25px 0 rgba(26, 24, 76, 0.08);
}


/* 버튼 */
.team-btn-wrap {
    text-align: center;
    margin-top: 45px;
}


.team-btn:hover {
	display: inline-block;
	background: #FFFFFF;
	border: 1px solid #433CC2;
	color: #433CC2;
}


.team-btn {
    display: inline-block;
    padding: 15px 43px;
    background: #433CC2;
    color: #fff;
    border-radius: 27.5px;
    text-decoration: none;
}

