/* CPA Badges & Recognition Styles */
.cpa-badges-recognition {
  max-width: 1200px;
  margin: 0 auto;
}

.badges-header {
  margin-bottom: 32px;
}

.badges-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #1a1a1a;
}

.badges-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.badges-content {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.badges-section {
  margin-bottom: 40px;
}

.badges-section:last-child {
  margin-bottom: 0;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #999;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

/* STATUS BADGES */
.status-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.status-badge .badge-icon {
  flex-shrink: 0;
}

.status-badge .badge-text {
  flex: 1;
}

.status-badge .badge-status {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
}

/* Badge Color Variants */
.badge-blue {
  background: #dbeafe;
  color: #1e40af;
}

.badge-blue.badge-active {
  background: #dbeafe;
  color: #1e40af;
}

.badge-green {
  background: #d1fae5;
  color: #065f46;
}

.badge-green.badge-active {
  background: #d1fae5;
  color: #065f46;
}

.badge-yellow {
  background: #fef3c7;
  color: #92400e;
}

.badge-yellow.badge-active {
  background: #fef3c7;
  color: #92400e;
}

.badge-gray {
  background: #f3f4f6;
  color: #6b7280;
}

.badge-gray.badge-inactive .badge-status {
  background: #e5e7eb;
  color: #6b7280;
}

/* RECOGNITION CARD */
.recognition-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.recognition-card.card-active {
  background: #fef3c7;
  border: 1px solid #fbbf24;
}

.recognition-card.card-inactive {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  opacity: 0.7;
}

.recognition-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f59e0b;
  color: #fff;
}

.recognition-card.card-inactive .recognition-icon {
  background: #9ca3af;
}

.recognition-content {
  flex: 1;
}

.recognition-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #1a1a1a;
}

.recognition-dates {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #666;
}

.recognition-status {
  flex-shrink: 0;
}

.status-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
}

.status-pill.status-active {
  background: #f59e0b;
  color: #fff;
}

.status-pill.status-inactive {
  background: #e5e7eb;
  color: #6b7280;
}

/* AWARDS LIST */
.awards-list,
.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.award-item,
.event-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.award-item:hover,
.event-item:hover {
  background: #f3f4f6;
}

.award-icon,
.event-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #8b5cf6;
  color: #fff;
}

.event-icon {
  background: #10b981;
}

.award-content,
.event-content {
  flex: 1;
}

.award-title,
.event-title {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

.award-date,
.event-date {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 8px;
  background: #c7d2fe;
  color: #4338ca;
  font-size: 13px;
  font-weight: 500;
}

.event-date {
  background: #d1fae5;
  color: #065f46;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .badges-content {
    padding: 14px 10px;
  }

  .badges-header h2 {
    font-size: 24px;
  }

  .status-badges {
    flex-direction: column;
  }

  .status-badge {
    width: 100%;
    justify-content: space-between;
  }

  .recognition-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .recognition-status {
    width: 100%;
    text-align: left;
  }

  .recognition-dates {
    flex-direction: column;
    gap: 4px;
  }

  .award-item,
  .event-item {
    flex-wrap: wrap;
  }

  .award-date,
  .event-date {
    width: 100%;
    text-align: center;
  }
}
