:root {
  --cm-navy: #001a33;
  --cm-sky: #43b6e9;
  --cm-white: #fff;
}

.cm-brand-movie,
.cm-brand-movie * {
  box-sizing: border-box;
}

.cm-brand-movie {
  position: relative;
  min-height: clamp(420px, 37.5vw, 640px);
  overflow: hidden;
  isolation: isolate;
  color: var(--cm-white);
  background: var(--cm-navy);
}

.cm-brand-movie__picture,
.cm-brand-movie__image,
.cm-brand-movie::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cm-brand-movie__image {
  object-fit: cover;
  object-position: center;
}

.cm-brand-movie::after {
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(0, 20, 42, .32), transparent 52%);
  pointer-events: none;
}

.cm-brand-movie__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(420px, 37.5vw, 640px);
  max-width: 1360px;
  margin: 0 auto;
  padding: 60px clamp(32px, 5vw, 80px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.cm-brand-movie__eyebrow {
  margin: 0 0 18px;
  color: var(--cm-sky);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
}

.cm-brand-movie__title {
  margin: 0;
  color: var(--cm-white);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .04em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .28);
}

.cm-brand-movie__lead {
  margin: 16px 0 30px;
  font-size: clamp(17px, 1.55vw, 23px);
  font-weight: 600;
  letter-spacing: .12em;
}

.cm-brand-movie__play {
  display: inline-flex;
  min-height: 58px;
  padding: 0 26px;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  color: var(--cm-white);
  background: rgba(0, 20, 42, .58);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background .25s ease, transform .25s ease;
}

.cm-brand-movie__play:hover,
.cm-brand-movie__play:focus {
  color: var(--cm-white);
  background: var(--cm-sky);
  transform: translateY(-2px);
  outline: none;
}

.cm-brand-movie__play-icon {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}

.cm-movie-modal[hidden] {
  display: none;
}

.cm-movie-modal {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: flex;
  padding: 24px;
  align-items: center;
  justify-content: center;
  background: rgba(0, 12, 26, .94);
}

.cm-movie-modal__body {
  position: relative;
  width: min(430px, 88vw);
}

.cm-movie-modal video {
  display: block;
  width: 100%;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
}

.cm-movie-modal__close {
  position: absolute;
  z-index: 1;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  color: var(--cm-white);
  background: var(--cm-navy);
  cursor: pointer;
  font-size: 24px;
  line-height: 40px;
}

body.cm-movie-is-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .cm-brand-movie,
  .cm-brand-movie__content {
    min-height: min(125vw, 720px);
  }

  .cm-brand-movie::after {
    background: linear-gradient(180deg, rgba(0, 20, 42, .3), transparent 57%);
  }

  .cm-brand-movie__content {
    justify-content: flex-start;
    padding: 44px 25px 32px;
  }

  .cm-brand-movie__eyebrow {
    margin-bottom: 12px;
  }

  .cm-brand-movie__title {
    font-size: clamp(30px, 8.8vw, 43px);
    line-height: 1.38;
  }

  .cm-brand-movie__lead {
    margin: 12px 0 22px;
    font-size: clamp(15px, 4.4vw, 19px);
  }

  .cm-brand-movie__play {
    min-height: 52px;
    padding: 0 21px;
  }
}
.cm-brand-movie .cm-brand-movie__title {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: #fff !important;
  background: none !important;
  box-shadow: none !important;
}

.cm-brand-movie .cm-brand-movie__title::before,
.cm-brand-movie .cm-brand-movie__title::after {
  display: none !important;
  content: none !important;
}