html, body{
  margin:0;
  padding:0;
  width:100%;
  height:100%;
  overflow:hidden;
}

.wp-main-hero-slider{
  width:100vw !important;
}

.wp-main-hero-slider{
  width:100%;
  height:520px;
  position:relative;
  overflow:hidden;
  font-family:'Noto Sans KR',sans-serif;
  background:#102b6f;
}

.wp-hero-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.05);
  transition:opacity 1s ease, transform 5s ease;
}

.wp-hero-slide.active{
  opacity:1;
  transform:scale(1);
  z-index:2;
}

.wp-hero-dim{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(2,15,38,.9),rgba(8,38,95,.66),rgba(8,38,95,.22));
}

.wp-hero-content{
  position:relative;
  z-index:3;
  max-width:1180px;
  height:100%;
  margin:0 auto;
  padding:0 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#fff;
  box-sizing:border-box;
}

.wp-hero-content span{
  width:max-content;
  padding:9px 18px;
  margin-bottom:24px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.28);
  font-size:15px;
  font-weight:800;
  letter-spacing:.08em;
}

.wp-hero-content h2{
  margin:0 0 22px;
  font-size:clamp(38px,5vw,68px);
  line-height:1.15;
  font-weight:900;
  letter-spacing:-.05em;
}

.wp-hero-content p{
  margin:0 0 36px;
  max-width:700px;
  font-size:clamp(18px,2vw,24px);
  line-height:1.65;
  font-weight:500;
  color:rgba(255,255,255,.94);
}

.wp-hero-content a{
  width:max-content;
  padding:16px 30px;
  border-radius:14px;
  background:#fff;
  color:#0a2c68;
  text-decoration:none;
  font-size:17px;
  font-weight:900;
  box-shadow:0 16px 35px rgba(0,0,0,.25);
  transition:.25s ease;
}

.wp-hero-content a:hover{
  transform:translateY(-4px);
  background:#ff9f1c;
  color:#fff;
}

.wp-hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:54px;
  height:54px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.22);
  color:#fff;
  font-size:44px;
  line-height:48px;
  cursor:pointer;
  transition:.25s ease;
}

.wp-hero-arrow:hover{
  background:#fff;
  color:#0a2c68;
}

.wp-hero-arrow.prev{left:34px;}
.wp-hero-arrow.next{right:34px;}

.wp-hero-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:34px;
  z-index:6;
  display:flex;
  justify-content:center;
  gap:10px;
}

.wp-hero-dot{
  width:12px;
  height:12px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.48);
  cursor:pointer;
  transition:.25s ease;
}

.wp-hero-dot.active{
  width:34px;
  background:#ff9f1c;
}

.wp-mainvisual-missing{
  width:100%;
  height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#233b84;
  color:#fff;
  font-size:22px;
  font-weight:800;
}

@media(max-width:768px){
  .wp-main-hero-slider{
    height:440px;
  }

  .wp-hero-content{
    padding:0 24px;
  }

  .wp-hero-content h2{
    font-size:36px;
  }

  .wp-hero-content p{
    font-size:17px;
  }

  .wp-hero-arrow{
    display:none;
  }
}