.category-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;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FEF3C6;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 25px;
  transition: color 0.2s ease;
}
.back-link:hover {
  color: white;
}
.back-link svg {
  width: 16px;
  height: 16px;
}

.hero-title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.hero-title-row svg {
  width: 32px;
  height: 32px;
}
.hero-title-row h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 800;
}

.hero-meta {
  margin: 0;
  font-size: 18px;
  color: #fde68a;
}

.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-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px 28px 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.bc-title {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-surface);
  text-align: right;
}

.bc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 900px) {
  .bc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .bc-grid {
    grid-template-columns: 1fr;
  }
}

.bc-item {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
  min-height: 64px;
}
.bc-item:hover {
  border-color: var(--color-surface);
  background: #fff7e6;
}
.bc-item:active {
  transform: translateY(1px);
}
.bc-item.is-active {
  border-color: var(--color-surface);
  background: #fff7e6;
}
.bc-item__row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.bc-item__icon {
  color: var(--color-surface);
}
.bc-item__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.bc-item__name {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}
.bc-item__meta {
  margin-top: 6px;
  font-size: 13px;
  color: #64748b;
  text-align: right;
}

/*# sourceMappingURL=blog-index-page.css.map */
