/* Bio page achievement-badge fix.
   The bundled CSS has multiple global .badge rules; a ribbon-style rule
   (position:absolute + rotate(45deg)) wins the cascade and breaks the
   bio badges. These selectors are more specific so they win cleanly. */
.achievement-section .achievement-badges {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  width: 100%;
}
.achievement-section .badge {
  position: static !important;
  transform: none !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  z-index: auto !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.75rem;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  padding: 0.85rem 1.5rem !important;
  background: linear-gradient(135deg, var(--accent-gold, #c9a86a) 0%, #b89a5f 100%) !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  letter-spacing: 0.3px !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 14px rgba(201, 168, 106, 0.35) !important;
  white-space: nowrap;
}
.achievement-section .badge-icon {
  font-size: 1.5rem !important;
  line-height: 1;
}
.achievement-section .badge-text {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  letter-spacing: 0.3px;
}
