.ces_innovation_awrards{
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.25rem;

  img{
    width: 4.063rem;
    height: auto;
    aspect-ratio: 65/90;
  }
}
.divotfix_video_wrap {
  position: relative;
  video{
    display : block;
  }
 }

.video_overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none; /* 기본은 클릭 막고, 버튼만 클릭 허용 */
}

.video_dim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 1;
  transition: opacity .2s ease;
}

.video_btn {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  background: url("../images/icons/ico_video_play.svg") no-repeat 56% center/ 1.5rem
}

.video_btn.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video_btn.hide + .video_dim,
.video_overlay.is-playing .video_dim {
  opacity: 0;
  visibility: hidden;
}

.hl_logo{
  width : 18rem;
  height: auto;
}
.dd_logo{
  width : 36.125rem;
  height: auto;
}

@media all and (max-width: 768px){
  .ces_innovation_awrards {
    width : 100%;
    img{
      width: 45px;
    }
  }
    .hl_logo{
    width: 90px;
  }
  .dd_logo{
    width : 181px;
  }

  .video_btn{
    width : 48px;
    height: 48px;
    background: url("../images/icons/ico_video_play.svg") no-repeat 58% center/ 16px
  }
}