/* =========================================================
   FOUTEN VAN HET 32E BESTUUR — genummerde ledger-stijl lijst
   ========================================================= */

.fouten-list{
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.fouten-entry{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.75rem;
  align-items: center;
  padding: 1.5rem 1rem;
  border-bottom: 1px dashed var(--line);
  transition: background .3s;
}
.fouten-entry:nth-child(odd){ background: rgba(220, 235, 221, 0.35); }
.fouten-entry:hover{ background: var(--mint-soft); }

.fouten-entry:first-child{ border-top: 1px dashed var(--line); }

.fouten-photo{
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-sm);
  justify-self: center;
}
.fouten-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
}

.fouten-number{
  position: absolute;
  top: -10px;
  left: -10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--surface);
  z-index: 2;
}

.fouten-info h3{
  font-size: 1.05rem;
  margin-bottom: 0.3em;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--danger);
}
.fouten-info p{ margin: 0; font-size: 0.95rem; }

@media (max-width: 560px){
  .fouten-entry{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .fouten-photo{ margin: 0 auto; }
  .fouten-info h3{ justify-content: center; }
}

.fouten-add-hint{
  max-width: 780px;
  margin: 2.5rem auto 0;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--surface);
  text-align: center;
}
