.project-objectives {
  margin-top: 1.5rem;
}

.project-objective-row {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid #DDD;
  border-radius: 8px;
  background-color: #FFF;
}

.project-objective-row__label {
  flex: 0 0 200px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #424242;
  display: flex;
  align-items: center;
  text-align: left;
}

.project-objective-row__separator {
  width: 1px;
  background-color: #CCC;
  margin: 0 1rem;
  align-self: stretch;
}

.project-objective-row__text {
  flex: 1;
  display: block; 
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  text-align: left;
}
.project-objective-row__text p {
  margin: 0 0 0.75rem 0;
}

.project-objective-row__text ul {
  margin: 0 0 0.75rem 1.5rem;
  padding: 0;
  list-style-type: disc;
}

.project-objective-row__text li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .project-objective-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .project-objective-row__label {
    flex: none;
    justify-content: flex-start;
    font-size: 20px;
  }

  .project-objective-row__separator {
    width: 100%;
    height: 1px;
    margin: 0.5rem 0;
  }

  .project-objective-row__text {
    flex: none;
    font-size: 15px;
    line-height: 1.4;
  }
}
