/* ============================================================
   index.css — главная страница (hero): аватар + текст + навигация.
   Дополняет base.css.
   ============================================================ */

.about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.about-container {
  width: 100%;
  max-width: 1149px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 84px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 45px;
  width: 100%;
  max-width: 920px;
}

.info-block .bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 650px;
}

.main-navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 105px;
  width: 100%;
}

/* --- Адаптив --------------------------------------------------- */
@media (max-width: 992px) {
  .info-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .main-navigation {
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .about-container {
    gap: 60px;
  }
  .main-navigation {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .main-navigation .nav-link {
    align-items: center;
  }
}
