
#vouches {
  margin-top: 4rem;
}

#vouches h2 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

#vouches p.muted {
  margin-bottom: 1.5rem;
  color: #7486ad;
}

.vouch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vouch-card {
  padding: 1.5rem;
  border: 1px solid #1c2743;
  background-color: #0d1526;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.vouch-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.vouch-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #1c2743;
  object-fit: cover;
  margin-right: 0.75rem;
  display: block;
}

.vouch-name {
  font-weight: 600;
}

.vouch-handle, .vouch-role {
  font-size: 0.8rem;
  color: #7486ad;
}

.vouch-message {
  flex: 1;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  color: #cbd6ef;
}

.vouch-date {
  font-size: 0.75rem;
  color: #7486ad;
  margin-top: auto;
}