.about-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-block: 0.6rem 1.1rem;
}

.about-hero p {
  margin: 0;
}

.about-avatar-link {
  line-height: 0;
}

.about-avatar {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color) 65%, transparent);
  box-shadow: 0 0.45rem 1rem rgba(0, 0, 0, 0.22);
}

.about-avatar-link:hover .about-avatar {
  transform: translateY(-2px);
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.28);
}

.edu-overview {
  margin-block: 1rem 1.25rem;
}

.edu-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.edu-list li {
  margin: 0;
}

.edu-school {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  padding: 0;
}

.edu-school img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.edu-school small {
  opacity: 0.88;
  font-size: 0.86rem;
  line-height: 1.35;
  text-align: left;
}

.edu-note {
  margin: 0.45rem 0 0;
}

.edu-school:hover small {
  color: var(--accent-color);
}

@media (max-width: 44rem) {
  .about-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-avatar {
    width: 6.2rem;
    height: 6.2rem;
  }

  .edu-school {
    gap: 0.5rem;
  }

  .edu-school img {
    width: 2.75rem;
    height: 2.75rem;
  }
}
