/* Extra About tweaks: center the three biography items and set heading/content weights */
.extra_container .biography {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 18px 0;
}
.extra_container .biography ul {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
  max-width: 1100px;
  width: 100%;
  justify-content: center;
}
.extra_container .biography li {
  flex: 1 1 300px;
  min-width: 220px;
  box-sizing: border-box;
  text-align: center;
}
.extra_container .biography .list_inner span {
  display: block;
  font-weight: 700; /* heading bold */
  margin-bottom: 8px;
  color: var(--text, #071017);
}
.extra_container .biography .list_inner h3 {
  margin: 0;
  font-weight: 400; /* content normal */
  line-height: 1.3;
  color: var(--text, #071017);
}
/* Small screens: stack vertically */
@media (max-width: 820px) {
  .extra_container .biography ul { flex-direction: column; gap: 18px; }
  .extra_container .biography li { max-width: 560px; margin: 0 auto; }
}
