/* ==========================================================
   COMPONENT: Documents
   Dokumentenbereiche und Download-/Dokumentkarten
   ========================================================== */

.dokumente-sektion {
  width: 100%;
  width: min(900px, calc(100% - (var(--site-gutter) * 2)));
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  text-align: center;
  justify-content: center;
}

.dokumente-liste {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.dokument-link {
  margin: 0 auto;
  display: inline-block;
  min-width: 200px;
  padding: 0.8rem 1.2rem;
  background-color: #f4f4f4;
  color: #222;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: var(--radius-medium);
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.dokument-link:hover {
  background-color: #eaeaea;
  transform: translateY(-2px);
}
