.videoSection {
  width: 100%;
  max-width: 100vw;
  padding: 32px 24px;
  background-color: #f6efdf;
  overflow: hidden;
}

.videoSection__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.videoSection__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 433px);
  column-gap: 88px;
  align-items: end;
}

.videoSection__title {
  margin: 0;
  max-width: 871px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.444vw, 4rem);
  line-height: 1.1;
  letter-spacing: clamp(-0.32px, -0.044vw, -0.64px);
  text-transform: uppercase;
  color: #17407d;
}

.videoSection__description {
  margin: 0;
  max-width: 433px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 1.528vw, 1.375rem);
  line-height: 1.2;
  letter-spacing: 0;
  color: #001d44;
}

.videoSection__description p {
  margin: 0;
}

.videoSection__mediaWrap {
  position: relative;
  padding-bottom: 40px;
}

.videoSection__blueBg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  bottom: 0;
  top: 55%;
  background: #17407D;
}

.videoSection__media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 842px;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: #001d44;
}

.videoSection__media--embed {
  cursor: default;
}

.videoSection__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videoSection__embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.videoSection__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: rgba(0, 30, 68, 0.2);
  transition: opacity 0.35s ease;
}

.videoSection__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 30, 68, 0.7) 0%, rgba(0, 30, 68, 0) 71.12%);
}

.videoSection__overlay--hidden {
  opacity: 0;
}

.videoSection__playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background-color: rgba(246, 239, 223, 0.3);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}

.videoSection__playButton--hidden {
  opacity: 0;
  pointer-events: none;
}

.videoSection__playIcon {
  width: 0;
  height: 0;
  margin-left: 10px;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 38px solid #ffffff;
}

@media (max-width: 1100px) {
  .videoSection__header {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .videoSection__description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .videoSection {
    padding: 24px 12px;
  }

  .videoSection__container {
    max-width: 369px;
    gap: 32px;
  }

  .videoSection__header {
    row-gap: 32px;
  }

  .videoSection__title {
    max-width: 368px;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.32px;
  }

  .videoSection__description {
    font-size: 16px;
    line-height: 1.2;
  }

  .videoSection__mediaWrap {
    padding-bottom: 20px;
  }

  .videoSection__blueBg {
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
  }

  .videoSection__media {
    height: auto;
    aspect-ratio: 369 / 246;
  }

  .videoSection__playButton {
    width: 110px;
    height: 110px;
  }

  .videoSection__playIcon {
    margin-left: 5px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 20px;
  }
}
