/* Homepage two-column layout */
.home-about {
  text-align: left;
}

.home-about-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
}

/* Left column: avatar + "Find me on" + icons, all centered */
.home-left-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
}

.home-left-col img {
  border-radius: 50%;
  object-fit: cover;
}

/* Avatar size classes */
.home-left-col img.size-xs { height: 7rem;  width: 7rem; }
.home-left-col img.size-s  { height: 9rem;  width: 9rem; }
.home-left-col img.size-m  { height: 11rem; width: 11rem; }
.home-left-col img.size-l  { height: 13rem; width: 13rem; }
.home-left-col img.size-xl { height: 15rem; width: 15rem; }

.home-find-me {
  margin: 1.6rem 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.home-left-col .social-icons-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Right column: bio text */
.home-bio {
  flex: 1;
  align-self: center;
}

.home-bio-title {
  font-weight: bold;
  margin-top: 0;
}

.home-bio p {
  line-height: 1.7;
  margin-top: 0.6rem;
}

/* Mobile: stack vertically */
@media only screen and (max-width: 820px) {
  .home-about {
    text-align: center;
  }

  .home-about-inner {
    flex-direction: column;
    align-items: center;
  }

  .home-left-col img {
    height: 7rem;
    width: 7rem;
  }

  .home-bio {
    text-align: left;
  }
}

