.author-hero {
  background: linear-gradient(90deg, var(--color-background), var(--color-muted));
  color: white;
  padding: 70px 20px;
}

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: right;
}
.hero-inner .back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: oklch(96.2% 0.059 95.617deg);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 25px;
  transition: color 0.2s ease;
}
.hero-inner .back-link:hover {
  color: white;
}
.hero-inner .back-link svg {
  width: 16px;
  height: 16px;
}
.hero-inner .author-info {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}
.hero-inner .author-info img {
  border-radius: 50px;
  border: 2px solid white;
}
.hero-inner .author-info .hero-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero-inner .author-info .hero-meta .hero-bio {
  margin: 0;
  max-width: 600px;
  font-size: 18px;
  color: oklch(96.2% 0.059 95.617deg);
}

.blog-grid {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 50px 15px 50px 100px;
  gap: 30px;
}

.bc-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px 64px;
}
.bc-wrap .bc-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px 28px 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.bc-wrap .bc-card .bc-title {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-surface);
  text-align: right;
}
.bc-wrap .bc-card .bc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 900px) {
  .bc-wrap .bc-card .bc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .bc-wrap .bc-card .bc-grid {
    grid-template-columns: 1fr;
  }
}
.bc-wrap .bc-card .bc-item {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px 10px 0;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
  min-height: 64px;
}
.bc-wrap .bc-card .bc-item:hover {
  border-color: var(--color-surface);
  background: #fff7e6;
}
.bc-wrap .bc-card .bc-item:active {
  transform: translateY(1px);
}
.bc-wrap .bc-card .bc-item.is-active {
  border-color: var(--color-surface);
  background: #fff7e6;
}
.bc-wrap .bc-card .bc-item__row {
  display: flex;
  gap: 20px;
}
.bc-wrap .bc-card .bc-item__row img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 2px solid white;
}
.bc-wrap .bc-card .bc-item__name {
  font-size: 16px;
  font-weight: bold;
  color: #0f172a;
  line-height: 1.2;
}
.bc-wrap .bc-card .bc-item__bio {
  font-size: 12px;
}
.bc-wrap .bc-card .bc-item__count {
  color: var(--color-surface);
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
}
.bc-wrap .bc-card .bc-item__meta {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 10px;
  color: #64748b;
  text-align: right;
}

/*# sourceMappingURL=blog-author.css.map */
