.hero-sub {
  background-color: #111d46;
  margin-top: 0;
  padding: 96px 0;
}

.hero-sub-content {
  display: flex;
  justify-content: space-between;
  padding: 0 120px;
  gap: 40px;
}

.hero-sub .sub-title {
  flex-shrink: 0;
}

.hero-sub-title {
  color: var(--white);
  font-size: var(--font-size-40);
  line-height: 120%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

.hero-sub-title span {
  display: inline-block;
}

.hero-sub-title .title-highlight {
  color: var(--primary-100);
}

.hero-sub-description {
  color: var(--white);
  margin: 0;
  max-width: 550px;
  white-space: pre-line;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-sub-content {
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }

  .hero-sub {
    padding: 48px 0;
  }

  .hero-sub-title,
  .hero-sub-description {
    width: 100%;
  }

  .hero-sub-title {
    font-size: var(--font-size-32);
  }
}
