/* Container for all people cards */
.document-cards {
  gap: 24px;
  justify-content: flex-start;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.document-cards a {
  text-decoration: none;
}

/* Single person card */
.document-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 100px 80px rgba(0, 0, 0, 0.08);
  padding: 24px 28px;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: box-shadow 0.2s;
  border: 2px solid #fff;
}

.document-card:hover {
  border: 2px solid var(--orange);
  box-shadow: 0 100px 80px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
.document-card img {
  width: 32px;
  height: 32px;
}

.document-name {
  font-size: 1.2rem;
  color: #222;
  font-weight: 700;
  font-family: 'Volkhov', serif;
  letter-spacing: 0.5px;
}

/* Responsive: stack cards on small screens */
@media (max-width: 900px) {
  .document-cards {
    gap: 16px;
    justify-content: center;
  }

}