/* ============ FEATURED VIDEO ============ */
.video-section{
  background:var(--ink);
  color:var(--paper);
  padding:120px 0;
  border-top:1px solid var(--rule);
}
.video-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--gutter);
}
.video-head{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:48px;
}
.video-head .eyebrow{display:block}
.video-head h2{
  font-size:clamp(48px, 7vw, 96px);
  line-height:.86;
  color:var(--paper);
}
.video-head h2 em{font-style:normal; color:var(--red)}
.video-frame{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:var(--ink-2);
  border:1px solid var(--rule);
  overflow:hidden;
}
.video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}
@media(max-width:680px){
  .video-section{padding:80px 0}
  .video-head{margin-bottom:32px}
}
