.visual {
  width: 100%;
  height: auto;
}
.visual .kv-banner {
  width: 100%;
  height: 283px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-top: 0;
}
.visual .kv-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.main-banner-slider {
  width: 100%;
  height: 100%;
}

.main-banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.banner-content {
  position: absolute;
  left: 8%;
  top: 20%;
  width: 70%;
  color: #fff;
  text-align: left;
  z-index: 2;
}

.banner-content h2 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.banner-content p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 25px;
  color: #fff;
  word-wrap: break-word;
  word-break: keep-all;
  white-space: pre-wrap;
  min-height: 48px;
}

.banner-content button {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s;
  font-size: 20px;
}

.banner-content button:hover {
  opacity: 0.8;
}

/* 모바일에서 메인 배너 폰트 크기 조정 */
@media (max-width: 767px) {
  .banner-content {
    top: 15%; /* 전체 콘텐츠를 위로 올림 */
  }

  .banner-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .banner-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .banner-content button {
    padding: 6px 12px;
    font-size: 13px;
    margin-top: -8px; /* 버튼을 위로 올림 */
  }
}
