.salagou-blog-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.sba-header {
  text-align: center;
  margin-bottom: 60px;
}

.sba-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #2C2722;
  letter-spacing: -0.5px;
}

.sba-header p {
  font-size: 18px;
  color: #746f82;
  margin: 0;
  font-weight: 300;
}

/* Tags Filter */
.sba-tags-filter {
  background: #F6EDD8;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.sba-tags-filter h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #2C2722;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sba-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sba-tag-badge {
  background: white;
  color: #BD4A2B;
  border: 1px solid rgba(189, 74, 43, 0.2);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sba-tag-badge:hover {
  background: #BD4A2B;
  color: white;
  transform: translateY(-2px);
}

.sba-tag-badge.active {
  background: #BD4A2B;
  color: white;
}

/* Category Sections */
.sba-category-section {
  margin-bottom: 80px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.sba-category-section.hidden {
  display: none;
}

.sba-category-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 40px;
  color: #2C2722;
  padding-bottom: 15px;
  border-bottom: 3px solid #BD4A2B;
}

/* Posts Grid */
.sba-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.sba-post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border-top: 4px solid #BD4A2B;
  transition: all 0.3s ease;
  opacity: 1;
}

.sba-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(189, 74, 43, 0.15);
}

.sba-post-card.hidden {
  display: none;
}

.sba-post-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sba-post-category {
  font-size: 12px;
  color: #746f82;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.sba-post-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #2C2722;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .sba-header h1 {
    font-size: 36px;
  }

  .sba-posts-grid {
    grid-template-columns: 1fr;
  }

  .sba-tags-list {
    justify-content: flex-start;
  }
}
