@media (max-width: 768px) {

  .breadcrumb-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .breadcrumb {
    position: static !important;
    transform: none !important;

    width: 100% !important;
    margin-top: 10px !important;

    white-space: normal !important;
  }

  .breadcrumb span {
    display: inline-block !important;
    margin-right: 5px !important;
  }

  .prev::before,
  .next::after {
    width: 36px !important;
    height: 36px !important;
    background-size: 5px !important;
  }

  .nav-btn {
    gap: 10px !important;
    font-size: 14px !important;
  }
}



.breadcrumb-container {
	max-width: 1200px;
    margin: 0 auto;
}

/* 상단 헤더 */
.breadcrumb-header {
	display:flex;
    align-items: center;
    position: relative;
}

.common {
	margin-top: 70px;
}


.custom {
	margin: 150px 0 50px 0;
}

.prev::before,
.next::after {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: #F9F9F9;
  border-radius: 50%;
}

.nav-btn {
  display: flex;
  align-items: center;   /* 세로 중앙 */
  gap: 15px;             /* 동그라미랑 텍스트 간격 */
}


.prev::before {
  background: #F9F9F9 url('/html/images/main/section3/prev.png') no-repeat center;
  background-size: 7px;
}

.next::after {
  background: #F9F9F9 url('/html/images/main/section3/next.png') no-repeat center;
  background-size: 7px;
}


.breadcrumb img {
	width: 16px;
	height: 16px;
}


.breadcrumb .intro-decs::before {
	content: " · ";
	padding-right: 5px;
}

.breadcrumb {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}