.video-feature {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0;
  color: #171a17;
  background: #fff;
}

.video-feature .wrap { position: relative; }

.video-feature-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(20rem, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.video-feature .kicker { color: #00a800; }

.video-feature .display {
  max-width: 9ch;
  margin: .65rem 0 0;
  color: #171a17;
}

.video-feature-copy p {
  max-width: 42rem;
  margin: 0;
  color: #416b69;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.65;
}

.youtube-subscribe {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  min-height: 3.25rem;
  margin-top: 1.35rem;
  padding: .75rem 1.15rem;
  border-radius: 999px;
  color: #fff;
  background: #ff0000;
  box-shadow: 0 .8rem 1.8rem rgba(255, 0, 0, .2);
  font-family: var(--condensed, 'Arial Narrow', Arial, sans-serif);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.youtube-subscribe:hover,
.youtube-subscribe:focus-visible {
  color: #fff;
  background: #d90000;
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.2rem rgba(217, 0, 0, .28);
}

.youtube-mark {
  position: relative;
  flex: 0 0 auto;
  width: 2rem;
  height: 1.4rem;
  border-radius: .42rem;
  background: #fff;
}

.youtube-mark::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: .32rem solid transparent;
  border-bottom: .32rem solid transparent;
  border-left: .52rem solid #ff0000;
  content: "";
  transform: translate(-42%, -50%);
}

.video-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050706;
  border: 1px solid rgba(23, 26, 23, .12);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 2rem 6rem rgba(23, 26, 23, .18);
}

.video-player iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 760px) {
  .video-feature-head { grid-template-columns: 1fr; }
  .video-feature .display { max-width: none; }
}
