.about__header {
  margin: 1.5em 0;
}

.about .about__description {
  width: 30%;
  line-height: 2;
  font-weight: 400;
  text-wrap: pretty;
}

.about .bold__description {
  width: 28%;
  line-height: 1.6;
  font-weight: 600;
  text-wrap: pretty;
}

.about_grid_header {
  margin-top: 1.5em;
  margin-bottom: 0.9em;
}

.about_grid {
  display: grid;
  column-gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
}

.about_grid p {
  line-height: 1.5;
  text-wrap: pretty;
  font-weight: 500;
}

.mission p {
  width: 40%;
  line-height: 1.5;
  text-wrap: pretty;
  font-weight: 500;
}

#about__projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 2rem;
  margin-top: 2rem;
  padding: 0 2rem 0 2rem;
  border-top: 1px solid var(--secondary-green-900);
}

#about__projects p,
#about__projects .project__aside {
  grid-column: 3/4;
  text-wrap: balance;
  font-weight: 700;
  line-height: 1.7;
}

#about__projects p {
  margin-left: 1rem;
}

#about__projects .project__aside {
  padding-bottom: 2rem;
}

#about__projects .project__aside p {
  margin-left: 0;
  padding-top: 2rem;
}

@media (max-width: 600px) {
  .about__header {
    margin-top: 3em;
  }

  .about {
    flex-direction: column;
  }

  .about .about__description {
    width: 100%;
    line-height: 1.5;
  }

  .about .bold__description {
    width: 100%;
    line-height: 1.6;
    font-weight: 500;
  }

  .about_grid_header {
    margin-top: 1em;
    margin-bottom: 0.5em;
  }

  .about_grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-weight: 400;
  }

  .about_grid p {
    line-height: 1.5;
  }

  .mission p {
    width: 100%;
  }

  .mission h2 {
    line-height: 1.1;
  }
}

@media (max-width: 425px) {
  #about__projects p,
  #about__projects .project__aside {
    font-weight: 300;
    line-height: 1.5;
    font-size: 1rem;
  }

  #about__projects p {
    margin: 1rem 2rem;
  }

  #about__projects .project__aside {
    padding-bottom: 3rem;
  }

  #about__projects .project__aside p {
    margin-left: 0;
    padding-top: 0;
  }

  #about__projects {
    display: flex;
    flex-direction: column;
    /* gap: 2rem; */
  }

  #about__projects h2 {
    margin-bottom: 0;
  }

  /* #about__projects p,
  #about__projects .project__aside {
    grid-column: 3/4;
    text-wrap: balance;
    font-weight: 700;
    line-height: 1.7;
  } */
}
