/* style-c2.css */


/* ====================== [C2 : VIDEO FULL SECTION] ====================== */
.c2{
  position: relative;
  width: 100%;
  height: 80vh;                /* 화면 가득 */
  overflow: hidden;
  background: #000;
}

.c2__video-wrap{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.c2__video{
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  /*filter: brightness(0.8);*/    
}

/* 오버레이와 텍스트 */
.c2__overlay{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.c2__text h2{
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.c2__text p{
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  opacity: 0.85;
}

/* 영상 위에 반투명 어둡게 */
.c2::before{
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(0,0,0,0.3);*/
  z-index: 1;
}

/* 모바일 전용 높이 조정 */
@media (max-width:768px){
  .c2{ height: 270px; }
  .c2__text h2{ font-size: 28px; }
  .c2__text p{ font-size: 15px; }
  .c2__video{
    position: absolute;
    top: 50%;
    left: 50%;
    /* min-width: 100%; */
    /* min-height: 327px; */
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /*filter: brightness(0.8);*/
  }
}



@media(max-width:360px){
  .c2{ height: 190px; }
}