/* ==========================================================================
   BADGES COMPONENT
   Consolidated from: pages/about.css, pages/homepage.css, pages/articles.css
   ========================================================================== */

/* ==========================================================================
   Hero Badge
   ========================================================================== */
.hero-badge,
.cta-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(27, 53, 44, 0.05);
  border: 1px solid rgba(27, 53, 44, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Section Label
   ========================================================================== */
.section-label {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(201, 168, 118, 0.1);
  color: var(--brand-secondary);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Featured Badge
   ========================================================================== */
.featured-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Article Category Badge
   ========================================================================== */
.article-category,
.article-category-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--brand-primary);
  color: var(--color-text-inverse);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Feature Tags
   ========================================================================== */
.feature-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  padding: var(--space-2) var(--space-4);
  background: rgba(201, 168, 118, 0.25);
  color: var(--brand-primary);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  border: 1px solid rgba(201, 168, 118, 0.4);
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.value-features,
.process-features {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  max-width: 300px;
  margin: 0 auto;
}

.value-features .feature-tag,
.process-features .feature-tag {
  flex: 1 1 calc(50% - var(--space-1));
  min-width: 120px;
}

/* ==========================================================================
   Job Remote Badge
   ========================================================================== */
.job-remote {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Price Badge
   ========================================================================== */
.price-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-md);
}
