.about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-description {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
}

.about-title {
  font-size: var(--size-lg);
  color: var(--clr-light);
  text-align: center;
}

.about-about {
  max-width: 60ch;
  font-size: var(--size-xs);
  color: var(--clr-stone600);
}

.about-hr {
  border-color: var(--clr-stone800);
}

.about-subtitle {
  font-size: var(--size-xs);
  color: var(--clr-stone400);
}

.about-ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding-left: 1em;
}

.about-list {
  font-size: var(--size-xs);
  color: var(--clr-stone600);
}

/* .ms2_list::before {
  content: '';
  margin-left: 0.5em;
} */

/* xs */
@media (min-width: 475px) {
  .about {
    gap: 1.5rem;
  }
  
  .about-content {
    gap: 1.5rem;
  }
  
  .about-description {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
  }
  
  .about-title {
    font-size: var(--size-xl);
  }
  
  .about-about {
    font-size: var(--size-sm);
  }
  
  .about-subtitle {
    font-size: var(--size-sm);
  }
  
  .about-list {
    font-size: var(--size-sm);
  }
}

/* sm */
@media (min-width: 640px) {
  .about-img-wrapper {
    margin: 0 auto;
  }

  .about-img {
    width: 28.5rem;
  }
}

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {
  .about {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .about-description {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
  }
  
  .about-title {
    font-size: var(--size-2xl);
  }
  
  .about-about {
    font-size: var(--size-base);
  }
  
  .about-subtitle {
    font-size: var(--size-base);
  }
  
  .about-list {
    font-size: var(--size-base);
  }
}

/* xl */
@media (min-width: 1280px) {
  .about-content {
    gap: 2rem;
  }

  .about-title {
    font-size: var(--size-3xl);
  }
  
  .about-about {
    font-size: var(--size-lg);
  }
  
  .about-subtitle {
    font-size: var(--size-lg);
  }
  
  .about-list {
    font-size: var(--size-lg);
  }

  .about-img {
    width: 30rem;
  }
}

/* xxl */
/* @media (min-width: 1536px) {} */