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

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: right;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.sidebar-card {
  background: #fff;
  padding: 20px;
  margin: 20px 10px 20px 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;
}

.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 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-item {
  padding: 8px 14px;
  border-radius: 8px;
  background: #FEF3C6;
  color: #78350f;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s;
}
.category-item:hover {
  background: var(--color-background);
  color: #fff;
}

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

.tag-item {
  padding: 5px 10px;
  border-radius: 20px;
  background: #f1f1f1;
  color: #444;
  text-decoration: none;
  font-size: 13px;
  transition: 0.2s;
}
.tag-item:hover {
  background: var(--color-background);
  color: #fff;
}

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

.blog-post {
  margin: 50px 0 100px 0;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-card {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-form {
    justify-content: center;
  }
}
.search-form {
  display: flex;
  max-width: 420px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.search-form input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}
.search-form input::placeholder {
  color: #9ca3af;
}
.search-form button {
  border: none;
  padding: 0 16px;
  background: #FEF3C6;
  color: var(--color-background);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.search-form button:hover {
  background: var(--color-background);
  color: #fff;
}

/*# sourceMappingURL=search.css.map */
