.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: #fde68a;
  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;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 50px 15px 50px 100px;
  gap: 30px;
}

.bc-wrap {
  width: 100%;
  max-width: 1280px;
  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;
}

.sidebar-card {
  background: #fff;
  padding: 20px;
  margin: 20px 10px 50px 10px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.sidebar-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.sidebar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-background);
}
.sidebar-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.tag-item {
  border-radius: 20px;
  background: rgb(254, 243, 198);
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: 0.2s;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5px;
  color: #78350f;
  padding: 10px 20px 10px 20px;
}
.tag-item.is-active {
  background: var(--color-background);
  color: #fff;
}
.tag-item.is-active svg {
  color: #fff;
}
.tag-item svg {
  width: 20px;
  color: #78350f;
}
.tag-item:hover {
  background: var(--color-background);
  color: #fff;
}
.tag-item:hover svg {
  color: #fff;
}

.empty-text {
  color: #6b7280;
  font-size: 14px;
}

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