.article-header {
  display: flex;
  gap: 50px;
}

.article-header > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.article-header > div p {
  color: #e24b2b;
  font-weight: bold;
  margin: 0;
}

.article-menu--wrapper {
  width: 100%;
  background: #f7f7f7;
  padding: 20px;
}

.article-menu--wrapper p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.article-menu--wrapper p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.article-menu--wrapper ol {
  margin-bottom: 0;
}

/* ---------- ОСНОВНАЯ КАРТОЧКА АВТОРА ---------- */
.author-card {
  max-width: 520px;
  width: 100%;
  background: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25), 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  margin-left: auto;
}

/* Внутренний отступ контента */
.author-content {
  padding: 2rem 1.8rem 2rem 1.8rem;
}

/* ---------- ВЕРХНЯЯ ЧАСТЬ: ФОТО + ОСНОВНАЯ ИНФОРМАЦИЯ ---------- */
.author-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.8rem;
  border-bottom: 2px solid #f0f2f5;
  padding-bottom: 1.5rem;
}

/* ФОТО АВТОРА (аватар) */
.author-photo {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  background: #f4f7fc;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  border: 3px solid white;
  transition: all 0.2s;
}

/* Блок ФИО + должность + соцсеть */
.author-title {
  flex: 1;
}

.author-socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-socials-list {
  display: flex;
  gap: 10px;
  align-items: center;
}

.author-name {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1e2a3e;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.author-role {
  display: inline-block;
  background: #eef2fa;
  color: #2c4b6e;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.9rem;
  border-radius: 40px;
  margin: 0.5rem 0 0.8rem 0;
  letter-spacing: 0.2px;
}

/* Ссылка на соцсеть — стилизованная как современная кнопка */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .6;
  transition: .3s all;
}

.social-link:hover {
  opacity: 1;
}

/* иконка соцсети (SVG) */
.social-icon {
  width: 18px;
  height: 18px;
  fill: white;
}

/* ---------- КРАТКОЕ ОПИСАНИЕ ---------- */
.author-bio {
  margin-top: 1rem;
}

.bio-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #5b6f82;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bio-heading::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #b9c8e8;
  display: inline-block;
  border-radius: 4px;
}

.bio-text {
  font-size: 1rem;
  line-height: 1.55;
  color: #2c3e4e;
  background: #f9fbfe;
  padding: 1rem 1.2rem;
  border-radius: 1.2rem;
  border-left: 4px solid #4a7c9b;
  transition: background 0.2s;
}

/* Адаптивность для планшетов и телефонов */
@media (max-width: 500px) {
  .author-content {
    padding: 1.5rem;
  }

  .author-header {
    flex-direction: column;
    text-align: center;
  }

  .author-title {
    text-align: center;
  }

  .social-link {
    margin-top: 0.25rem;
  }

  .author-photo {
    width: 100px;
    height: 100px;
  }

  .author-name {
    font-size: 1.5rem;
  }

  .bio-text {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }
}

/* Дополнительный акцент на ссылку соцсети в правом углу (для десктопа) */
@media (min-width: 501px) {
  .social-link {
    margin-top: 0.25rem;
  }
}

/* Эффект свечения при фокусе для доступности */
.social-link:focus-visible {
  outline: 3px solid #4a7c9b;
  outline-offset: 2px;
}

/* просто красивый разделитель */
.extra-meta {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #96a9bb;
  text-align: right;
  border-top: 1px solid #edf2f7;
  padding-top: 0.8rem;
}