#bio .s1 .bio-wrapper {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}

#bio .s1 .left {
  width: 50%;
  max-width: 325px;
}

#bio .s1 .left img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

#bio .s1 .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 975px;
}

#bio .s1 .title {
  margin: 2.5rem 0 3rem;
}

@media screen and (max-width: 850px) {
  #bio #container .s1 .bio-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
  #bio #container .s1 .left, #bio #container .s1 .right {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  #bio #container .s1 .bio-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
  #bio #container .s1 .left, #bio #container .s1 .right {
    width: 100%;
    max-width: 100%;
  }
}
