.article-author {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: 8px;
}

.article-author__photo {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f5f8;
}

.article-author__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-author__main {
  flex: 0 1 280px;
  min-width: 200px;
}

.article-author__label {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.3;
  color: #8b95a5;
}

.article-author__name {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: #1a2b4a;
}

.article-author__directions {
  flex: 1 1 auto;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #6b7689;
}

.article-author__other {
  flex: 1 1 100%;
  margin: 4px 0 0;
  padding-top: 16px;
  border-top: 1px solid #eceef2;
}

.article-author__other-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: #8b95a5;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.article-author__other-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-author__other-item {
  margin: 0 0 6px;
}

.article-author__other-item:last-child {
  margin-bottom: 0;
}

.article-author__other-link {
  font-size: 15px;
  line-height: 1.4;
  color: #1a2b4a;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 43, 74, 0.25);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.article-author__other-link:hover {
  color: var(--theme-base-color, #0066cc);
  border-bottom-color: var(--theme-base-color, #0066cc);
}

@media (max-width: 767px) {
  .article-author {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }

  .article-author__main {
    flex: 1 1 calc(100% - 88px);
    min-width: 0;
  }

  .article-author__directions {
    flex: 1 1 100%;
  }
}
