/* ==========================================================================
   Fresh Makelaars – Theme 2 – Tab: Documents
   ========================================================================== */

#fresh-makelaars .fm2-documents {
  padding: 8px 0;
}

#fresh-makelaars .fm2-documents-hint {
  color: #666;
  font-size: 16px;
  margin-bottom: 24px;
}

#fresh-makelaars .fm2-documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

#fresh-makelaars .fm2-document-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: #f7f9fc;
  border: 1px solid #e4e8ef;
  border-radius: 10px;
  text-decoration: none;
  color: #1a2233;
  text-align: center;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

#fresh-makelaars .fm2-document-card:hover {
  background: #eef2f8;
  border-color: #c4cedd;
  transform: translateY(-2px);
}

#fresh-makelaars .fm2-document-card-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.75;
}

#fresh-makelaars .fm2-document-card-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  word-break: break-word;
}
