.main-visual-container {
  position: relative;
  z-index: 1;
  display: flex;         
  flex-direction: column;
  gap: 24px;
  min-width: 1160px;
  overflow: hidden;
}

/* 메인 배너 */
.swiper-banner-container {
  width: 100%;
  max-width: 1790px;
  margin: 0 auto;
  overflow: hidden;
  display: none;
}

.swiper {
  margin-top: 24px;
  margin-bottom: 48px;
  width: 570px;
  height: 329px;
  box-sizing: border-box;
  overflow: visible !important;
}

.main-banner-item {
  width: 570px;
  height: 329px;
  position: relative;
}

.main-banner-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(44, 44, 44, 0.00) 50.15%, #2C2C2C 127.51%);
  pointer-events: none;
}

.main-banner-image {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
}

.main-banner-content-wrap {
  position: absolute;
  bottom: 50px;
  color: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 39px;
}

.main-banner-headline {
  background: #fff;
  color: #000;
  padding: 4px 8px; 
  border-radius: 4px;
  font-size: 12px;
  line-height: 140%;
  font-weight: 800;
  width: fit-content;
}

.main-banner-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.main-banner-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 130%;
  white-space: pre-line;
}

.main-banner-description {
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  white-space: pre-line;
}
/* // 슬라이드 관련 */

/* 프로그레스바 */
.progress-container {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1160px;
  display: flex;
  align-items: center;
}

.swiper-progress-bar {
  position: relative;
  flex: 1;
  height: 4px;
  background: #F5F5F5;
  border-radius: 2px;
}

.swiper-progress-bar .progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #111;
  width: 0;
  transition: width 0.5s ease;
  border-radius: 2px;
}

/* // 프로그레스바 */

/* 페이지네이션 */
.custom-pagination {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding-left: 13px;
}

.page-info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 140%;
}

.page-info .current {
  color: #111;
}

.page-info .total {
  color: #C2C2C2;
}

.page-info-wrap {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-button {
  border: none;
  background: none;
  color: #111;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  width: 24px;
  height: 24px;
}

.separator {
  color: #C2C2C2;
}
