@media (max-width: 768px) {

  .steps-list {
    flex-direction: column !important;   /* 👈 핵심 */
    gap: 40px !important;
    align-items: center !important;
  }
  
  .steps-item::after {
    display: none !important;
  }

   .steps-btn-wrap {
    margin-top: 40px !important;
  }

}


.steps-section {
    padding: 140px 0 140px 0;
    background-color: #F9F9F9;
    margin-top: 120px;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-header {
	display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

/* 상단 */
.steps-container .intro-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.steps-nav {
    display: flex;
    gap: 10px;
}

/* 리스트 */
.steps-list {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.steps-item {
    position: relative;
}

/* 점 (...) */
.steps-item::after {
    content: "· · ·";
    position: absolute;
    top: 30px;         /* 아이콘 높이에 맞게 조절 */
    right: -60px;      /* 다음 아이템 쪽으로 밀기 */
    color: #D9D9D9;
    font-size: 33px;
}

/* 마지막은 제거 */
.steps-item:last-child::after {
    content: "";
}



.steps-icon-img {
	border-radius: 25px;
	width:100px;
	height:100px;
	background-color: #fff;
	display: flex;
  	justify-content: center; /* 가로 가운데 */
  	align-items: center;    /* 세로 가운데 */
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

/* 카드 */
.steps-item img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.exp {
    font-size: 12px;
    color: #777;
}

/* 버튼 */
.steps-btn-wrap {
    text-align: center;
    margin-top: 90px;
}

.steps-btn {
    display: inline-block;
    padding: 18px 40px;
    background: #4b3fc4;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}