.author-hero {
  padding: 32px 0 10px;
}
.author-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}
.author-hero__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}
.author-hero__bio {
  text-align: center;
}
.author-hero__name {
  margin: 2px 0 6px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
}
.author-hero__role {
  margin: 0 0 14px;
  color: var(--fg);
  opacity: 0.9;
  font-size: 18px;
  line-height: 1.6;
  max-width: 820px;
}
.author-hero__link {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.author-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 16px;
  gap: 0;
}
.author-hero__meta li {
  white-space: nowrap;
}
.author-hero__meta li + li::before {
  content: "•";
  margin: 0 16px;
  opacity: 0.6;
}

.author-section {
  padding: 16px 0 48px;
}
.section-title {
  margin: 22px 0 12px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.author-tabs {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  border-bottom: 1px solid var(--border);
  min-height: 48px;
  padding: 0;
}
.tab {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 2px;
  background: none;
  border: 0;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  line-height: 1;
}
.tab.is-active {
  border-bottom: 2px solid var(--fg);
}

.empty-block {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  text-align: center;
  color: rgba(17, 24, 39, 0.28);
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.empty-block__icon,
.empty-block__desc {
  display: none;
}
.empty-block__title {
  margin-bottom: 200px;
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(17, 24, 39, 0.28);
}

.edit-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: #111;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .author-hero {
    padding: 24px 0 8px;
  }
  .author-hero__avatar {
    width: 72px;
    height: 72px;
  }
  .author-hero__name {
    font-size: 24px;
  }
  .author-hero__role {
    font-size: 16px;
  }
  .author-hero__meta {
    font-size: 14px;
  }
  .author-hero__meta li + li::before {
    margin: 0 12px;
  }
  .section-title {
    font-size: 22px;
  }
  .empty-block {
    min-height: 36vh;
    margin-top: 28px;
  }
  .empty-block__title {
    font-size: 24px;
  }
  .tabs {
    gap: 16px;
  }
}
