/* контейнер и заголовок страницы */
.leadership-container {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 16px;
}
.page-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 2rem;
  color: #0073e6;
  font-weight: 700;
}

/* карточка руководителя */
.leadership-card {
  display: flex;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  margin-bottom: 24px;
}

/* фото */
.leader-photo {
  width: 240px;
  object-fit: cover;
  flex-shrink: 0;
}

/* блок с данными */
.leader-info {
  flex: 1 1 auto;
  padding: 24px 30px;
}
.leader-info p {
  margin: 8px 0;
  line-height: 1.4;
}
.leader-info .label {
  display: inline-block;
  width: 140px;
  font-weight: 600;
  color: #0073e6;
}

/* ссылка «Биография» */
.bio-link {
  font-size: 1rem;
  color: #0073e6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color .2s;
}
.bio-link:hover {
  color: #005bb5;
}
.bio-link-arrow {
  font-size: .9em;
  margin-left: 4px;
  transition: transform .2s;
}
.bio-link:hover .bio-link-arrow {
  transform: translateX(2px);
}

/* модальное окно */
.bio-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 1000;
}
.bio-modal.open {
  visibility: visible;
  opacity: 1;
}
.bio-modal .bio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
.bio-modal .bio-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-20px);
  width: 90%;
  max-width: 500px;
  max-height: 80%;
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform .3s ease;
}
.bio-modal.open .bio-content {
  transform: translate(-50%, -50%) translateY(0);
}
.bio-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.bio-text {
  display: none;
}
.bio-text.active {
  display: block;
}

/* адаптив для карточек */
@media (max-width: 680px) {
  .leadership-card {
    flex-direction: column;
    text-align: center;
  }
  .leader-photo,
  .leader-info .label {
    width: 100%;
  }
  .leader-info .label {
    display: block;
    margin-bottom: 4px;
  }
}
