.org-webform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.org-webform-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.org-webform-card h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: #222;
}

.org-webform-card p {
  color: #666;
  font-size: 14px;
}

.org-webform-card .button {
  margin-top: 10px;
  margin-top: auto;
  display: grid;
}
