
.signatories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.signatories-header h2 {
  margin: 0;
  color: white;
  font-size: 2rem;
  font-weight: 600;
}

.signatories-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  backdrop-filter: blur(10px);
  min-width: 100px;
}

.count-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f5f5f5;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.count-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 400;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .signatories-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .signatories-header h2 {
    font-size: 1.75rem;
  }
  
  .signatories-count {
    padding: 0.6rem 0.8rem;
  }
  
  .count-number {
    font-size: 1.3rem;
  }
  
  .count-label {
    font-size: 0.7rem;
  }
}

.signatories__legend {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.signatories__legend-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 1rem;
}

.signatories__legend-items {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
}

.signatories__legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.signatories__legend-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  background: transparent;
}

.signatories__legend-text {
  font-size: 0.9rem;
  color: #555;
}

.signatories__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.signatory-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.signatory-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.signatory-card__name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
  flex: 1;
}

.signatory-card__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-left: 0.5rem;
  opacity: 1.0;
  flex-shrink: 0;
  background: transparent;
}

.signatory-card__title {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.signatory-card__comment {
  font-size: 0.98rem;
  color: #444;
  margin-top: 0.5rem;
  font-style: italic;
}


@media (max-width: 600px) {
  .signatories__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .signatories__legend-items {
    flex-direction: column;
    gap: 1rem;
  }
}
