
.author-hero {
  background: #f9fdff;
  padding: 32px 0 40px;
  border-bottom: 1px solid #e8f0fb;
}

.author-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  font-size: 14px;
}

.author-hero__breadcrumb .breadcrumb-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.author-hero__breadcrumb .breadcrumb-link:hover {
  color: #007bf3;
}

.author-hero__breadcrumb .breadcrumb-sep {
  color: #d1d5db;
  font-size: 11px;
}

.author-hero__breadcrumb .breadcrumb-current {
  color: #007bf3;
  font-weight: 500;
}

.author-box-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: #ffffff;
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px 32px;
}

.author-box-card__avatar-wrap {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e8f0fb;
  background: #f0f7ff;
}

.author-box-card__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.author-box-card__text {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.author-box-card__name {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.author-box-card__bio {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.75;
}

.author-box-card__bio p {
  margin: 0 0 8px;
}

.author-box-card__bio p:last-child {
  margin-bottom: 0;
}

.author-posts-section {
  background: #f9fdff;
  padding: 40px 0 60px;
}

.author-posts__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8f0fb;
}

.author-posts__heading {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-posts__heading i {
  font-size: 18px;
  color: #007bf3;
}

.author-posts__count {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: #f0f7ff;
  border: 1.5px solid #c7dff9;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #007bf3;
}

@media (max-width: 1024px) {
  .author-box-card {
    padding: 24px;
    gap: 22px;
  }

  .author-box-card__avatar-wrap {
    width: 84px;
    height: 84px;
  }

  .author-box-card__name {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .author-hero {
    padding: 24px 0 32px;
  }

  .author-hero__breadcrumb {
    margin-bottom: 20px;
  }

  .author-box-card {
    padding: 20px;
    gap: 18px;
  }

  .author-box-card__avatar-wrap {
    width: 76px;
    height: 76px;
  }

  .author-box-card__name {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .author-box-card__bio {
    font-size: 14px;
  }

  .author-posts-section {
    padding: 28px 0 44px;
  }

  .author-posts__heading {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .author-box-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    gap: 16px;
  }

  .author-box-card__avatar-wrap {
    width: 86px;
    height: 86px;
  }

  .author-box-card__text {
    padding-top: 0;
    width: 100%;
  }

  .author-box-card__name {
    font-size: 18px;
  }

  .author-box-card__bio {
    text-align: left;
  }
}