/* Ensures the about section main text fills width and looks visually appealing */
.about-main-text {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto 2.2rem auto;
  font-size: 1.35rem;
  line-height: 1.8;
  color: #1a1a1a;
  padding: 2.2rem 7vw 2.2rem 7vw;
  letter-spacing: 0.01em;
  text-align: left;
  background: none;
  border-radius: 0;
  box-shadow: none;
  display: block;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.about-main-text br {
  margin-bottom: 1.2em;
  display: block;
  content: "";
}

@media (max-width: 768px) {
  .about-main-text {
    padding: 1.2rem 3vw;
    font-size: 1.1rem;
  }
}
