.v2l {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0) 72.92%, rgba(0, 0, 0, 0.2) 100%);
}

.v2l__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.v2l__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.v2l__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 55.12%, rgba(0, 0, 0, 0.33) 100%);
}

.v2l__content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.v2l__title {
  padding-top: 48px;
  color: rgb(255, 255, 255);
  font-size: 40px;
  text-align: center;
  font-weight: 600;
}

.v2l__describe {
  width: 554px;
  padding-bottom: 16px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: rgb(255, 255, 255);
}

@media (max-width: 767px) {
  .v2l {
    height: 100vh;
  }

  .v2l__content {
    width: calc(100% - 36px);
  }

  .v2l__title {
    padding-top: 38px;
    font-size: 32px;
  }

  .v2l__describe {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 0;
  }
}
