/* Trajectory Section Styles */
.trajectory-section {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.trajectory-content {
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;

  padding: 50px 100px;
}
.trajectory-text {
  flex: 1 1 60%;
  z-index: 2;
}
.trajectory-title {
  font-size: var(--text-subheading-size, 40px);
  font-weight: var(--text-subheading-weight, 700);
  text-transform: uppercase;
}
.trajectory-divider {
  width: 130px;
  border: 1.5px solid var(--white);
  margin-top: var(--line-spacing-top);
  margin-bottom: var(--line-spacing-bottom);
}
.trajectory-lead {
  font-size: var(--text-subtext-size, 24px);
  font-weight: var(--text-subtext-weight, 300);
  color: #fff;
  margin-bottom: 18px;
  max-width: 800px;
}
.bottom-bottom-text {
  font-size: var(--text-subtext-size, 24px);
  font-weight: var(--text-subtext-weight, 300);
  color: #fff;
  margin-bottom: 18px;
  max-width: 800px;
}

.trajectory-lead strong {
  font-weight: var(--text-title-weight, 800);
  color: #fff;
}
.trajectory-img-wrap {
  flex: 1 1 40%;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.trajectory-img {
  width: 125%;
  height: auto;
  z-index: 1000;
  position: absolute;
  transform: translateY(790px);
}
.trajectory-launch {
  background: #fff;
  color: #232121;
  padding: 50px 100px;
  text-align: left;
}
.trajectory-launch-title {
  font-size: var(--text-subheading-size, 40px);
  font-weight: var(--text-subheading-weight, 700);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.trajectory-launch-divider {
  width: 130px;
  border: 1.5px solid var(--black);
  margin-top: var(--line-spacing-top);
  margin-bottom: var(--line-spacing-bottom);
}
.trajectory-launch-lead {
  font-size: var(--text-subtext-size, 24px);
  font-weight: var(--text-subtext-weight, 300);
  color: #232121;
  margin-bottom: 0;
  max-width: 800px;
}

@media (min-width: 901px) and (max-width: 1024px) {
  .trajectory-content {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;

    padding: 50px 32px;
  }
  .trajectory-img {
    width: 100%;
    height: auto;
    z-index: 1000;
    position: absolute;
    transform: translateY(600px);
  }
  .trajectory-launch {
    padding: 50px 32px;
  }
  .trajectory-title {
    font-size: var(--tablet-heading-size, 33px);
    font-weight: var(--tablet-heading-weight, 700);
    text-transform: uppercase;
  }
  .trajectory-lead {
    font-size: var(--tablet-subtext-size, 24px);
  }
  .trajectory-divider {
    width: 100px;
    margin-top: var(--tablet-line-spacing-top);
    margin-bottom: var(--tablet-line-spacing-bottom);
  }
  .trajectory-launch-title {
    font-size: var(--tablet-heading-size, 33px);
    font-weight: var(--tablet-heading-weight, 700);
    margin-bottom: 12px;
    text-transform: uppercase;
    width: 100%;
  }
  .trajectory-launch-lead {
    font-size: var(--tablet-subtext-size, 24px);
  }
  .trajectory-divider {
    width: 100px;
    margin-top: var(--tablet-line-spacing-top);
    margin-bottom: var(--tablet-line-spacing-bottom);
  }
  
}

@media (max-width: 900px) {

  .trajectory-content {
    padding: 32px 24px;
    position: relative;
  }

  .trajectory-text {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .trajectory-title {
    font-size: var(--mobile-heading-size, 28px);
    font-weight: var(--mobile-heading-weight, 700);
  }

  .trajectory-lead {
    font-size: var(--mobile-subtext-size, 19px);
  }

  .top-longer-length {
    width: 100%;
  }

  .bottom-longer-length {
    width: 100%;
    max-width: 420px;
  }

  .bottom-bottom-text {
    width: 80%;
  }

  .trajectory-divider {
    width: 100px;
    margin-top: var(--mobile-line-spacing-top);
    margin-bottom: var(--mobile-line-spacing-bottom);
  }

  .trajectory-img-wrap {
    position: absolute;
    right: 5px;
    bottom: 0;
    width: 55%;
    height: auto;
    display: block;
    z-index: 3;
    pointer-events: none;
    transform: translateY(120px);
  }

  .trajectory-img {
    position: relative;
    width: 100%;
    height: auto;
    transform: none; 
  }

  .trajectory-launch {
    padding: 32px 24px;
  
  }

  .trajectory-launch-title {
    font-size: var(--mobile-heading-size, 28px);
    font-weight: var(--mobile-heading-weight, 700);
    width: 100%;
  }

  .trajectory-launch-divider {
    width: 100px;
    margin-top: var(--mobile-line-spacing-top);
    margin-bottom: var(--mobile-line-spacing-bottom);
  }

  .trajectory-launch-lead {
    font-size: var(--mobile-subtext-size, 19px);
  }
}

