.authors-section {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.authors-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.authors-section__title {
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 850;
}

.authors-section__link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 4px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.authors-section__link:hover,
.authors-section__link:focus-visible {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.authors-list {
  display: grid;
  gap: 6px;
  min-height: 0;
  overflow-y: auto;
  padding: 1px 2px 2px;
  scrollbar-width: thin;
}

.author-card {
  display: flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border: 1px solid rgba(231, 220, 203, 0.88);
  border-radius: 12px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 20px rgba(30, 42, 56, 0.06);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.author-card:hover,
.author-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(196, 154, 90, 0.42);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(30, 42, 56, 0.1);
}

.author-card:active {
  transform: scale(0.98);
}

.author-card:focus-visible {
  outline: 3px solid rgba(196, 154, 90, 0.34);
  outline-offset: 3px;
}

.author-card__avatar {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(30, 42, 56, 0.08);
}

.author-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-card__initials {
  color: var(--color-text);
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
}

.author-card__content {
  display: grid;
  min-width: 0;
  gap: 0;
}

.author-card__name {
  overflow: hidden;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.author-card__meta {
  overflow: hidden;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.authors-section__empty {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px dashed rgba(196, 154, 90, 0.45);
  border-radius: 18px;
  color: var(--color-muted);
  background: rgba(255, 248, 236, 0.78);
  font-size: 14px;
  font-weight: 750;
}

@media (min-width: 768px) {
  .home-hero-layout .authors-section {
    height: 150px;
    padding: 10px;
  }

  .home-hero-layout .authors-section__title {
    font-size: 18px;
  }

  .home-hero-layout .authors-list {
    padding-right: 4px;
  }
}

@media (min-width: 1024px) {
  .home-hero-layout .authors-section {
    height: 170px;
  }
}

@media (max-width: 767.98px) {
  .authors-section {
    width: 100%;
    padding: 12px;
  }

  .authors-section__title {
    font-size: 18px;
  }

  .authors-list {
    overflow: visible;
  }
}
