/* Hero */
.about-hero {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 16px;
  margin-bottom: 40px;
}
.about-hero img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
}
.about-hero h1 {
  margin: 0 0 6px;
  font-size: 26px;
}
.about-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}
.about-links li {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Sections */
.about-section {
  margin-bottom: 36px;
}
.about-section h2 {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-text-color);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-color);
}
.entries {
  list-style: none;
  padding: 0;
  margin: 0;
}
.entry {
  margin: 0 0 20px;
}
.entry:last-child {
  margin-bottom: 0;
}
.entry-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.entry-name {
  font-size: 17px;
  font-weight: 600;
}
.entry-name a {
  color: var(--main-text-color);
}
.entry-period {
  font-size: 14px;
  color: var(--secondary-text-color);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.entry-desc {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--main-text-color);
}
.entry-desc code {
  padding: 0.1em 0.35em;
  font-size: 0.9em;
  background-color: rgba(27, 31, 35, 0.05);
  border-radius: 4px;
}
.entry-role {
  font-size: 14px;
  color: var(--secondary-text-color);
  margin-top: 2px;
}
