/* research.css — per-onderzoek stijlen (bevroren bij publicatie) */
/* Leeg: de research gebruikt de globale /css/style.css.
   Agents kunnen hier research-specifieke CSS aan toevoegen. */

.church-list {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.church-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.2s;
}

.church-card:hover {
  transform: translateY(-2px);
}

.church-card h3 {
  color: var(--color-primary, #7eb8da);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.5rem;
}

.info-table td {
  padding: 0.3rem 0.75rem 0.3rem 0;
  vertical-align: top;
  font-size: 0.95rem;
  border: none;
}

.info-table td:first-child {
  white-space: nowrap;
  width: 100px;
  color: var(--color-muted, #999);
}

.info-table a {
  color: var(--color-primary, #7eb8da);
}