:root {
  color-scheme: light;
  --video-navy: #10243b;
  --video-blue: #097ec1;
  --video-line: #d9e1e8;
  --video-muted: #586675;
}

* { box-sizing: border-box; }
body.video-watch-page {
  margin: 0;
  background: #f6f8fa;
  color: var(--video-navy);
  font-family: Arial, "Noto Sans KR", sans-serif;
  line-height: 1.65;
}
.video-watch-skip {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 10;
  padding: 8px 12px;
  background: #fff;
  color: var(--video-navy);
}
.video-watch-skip:focus { top: 16px; }
.video-watch-header {
  min-height: 72px;
  background: #fff;
  border-bottom: 1px solid var(--video-line);
}
.video-watch-header__inner,
.video-watch-main,
.video-watch-footer__inner {
  width: min(100% - 40px, 1060px);
  margin: 0 auto;
}
.video-watch-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
.video-watch-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.video-watch-brand img {
  display: block;
  width: auto;
  height: 30px;
}
.video-watch-back {
  color: var(--video-blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.video-watch-main { padding: 56px 0 72px; }
.video-watch-breadcrumb {
  margin: 0 0 12px;
  color: var(--video-muted);
  font-size: 14px;
}
.video-watch-kicker {
  margin: 0 0 8px;
  color: var(--video-blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
}
.video-watch-title {
  margin: 0;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.2;
  letter-spacing: -.055em;
}
.video-watch-lede {
  max-width: 720px;
  margin: 18px 0 34px;
  color: var(--video-muted);
  font-size: 18px;
}
.video-watch-player {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 18px 38px rgba(16, 36, 59, .16);
}
.video-watch-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-watch-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-top: 34px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--video-line);
}
.video-watch-detail h2 { margin: 0 0 10px; font-size: 21px; }
.video-watch-detail p { margin: 0; color: var(--video-muted); }
.video-watch-button {
  display: inline-block;
  padding: 13px 18px;
  background: var(--video-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.video-watch-button:hover,
.video-watch-button:focus-visible { background: #05689f; }
.video-watch-footer {
  padding: 25px 0;
  background: var(--video-navy);
  color: #dce6ef;
  font-size: 14px;
}
@media (max-width: 640px) {
  .video-watch-header__inner,
  .video-watch-main,
  .video-watch-footer__inner { width: min(100% - 32px, 1060px); }
  .video-watch-main { padding: 38px 0 52px; }
  .video-watch-header__inner { min-height: 62px; }
  .video-watch-header { min-height: 62px; }
  .video-watch-brand img { height: 26px; }
  .video-watch-detail { grid-template-columns: 1fr; gap: 22px; padding: 24px; }
  .video-watch-button { text-align: center; }
}
