/* ── meistgesucht.css ── Styles für die Fahndungsseite ── */

.page-header {
    padding-top: 130px;
    padding-bottom: 40px;
    text-align: center;
  }
  
  .page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.92;
    letter-spacing: 5px;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
    margin-top: 10px;
  }
  
  .gesucht-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 28px 110px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  /* ── Hinweis-Kärtchen ── */
  .gesucht-hinweis {
    border-color: rgba(255, 51, 68, 0.25) !important;
  }
  
  /* ── Fahndungs-Grid ── */
  .gesucht-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
  }
  
  .gesucht-card {
    cursor: default;
  }
  
  .gesucht-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 24px;
  }
  
  /* Foto-Bereich */
  .gesucht-photo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .photo-placeholder {
    width: 100px;
    height: 120px;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  
  .photo-icon { font-size: 32px; opacity: 0.3; }
  
  .photo-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.25);
    text-align: center;
    line-height: 1.5;
  }
  
  /* Risiko-Level Badges */
  .gesucht-level {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 6px;
    text-align: center;
    width: 120px;
  }
  
  .gesucht-level--high {
    background: rgba(255,51,68,0.2);
    color: #ff4d5e;
    border: 1px solid rgba(255,51,68,0.4);
  }
  
  .gesucht-level--mid {
    background: rgba(255,140,0,0.2);
    color: var(--orange);
    border: 1px solid rgba(255,140,0,0.4);
  }
  
  .gesucht-level--low {
    background: rgba(0,200,100,0.12);
    color: #00cc66;
    border: 1px solid rgba(0,200,100,0.35);
  }
  
  /* Info-Bereich */
  .gesucht-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .gesucht-nummer {
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.35);
  }
  
  .gesucht-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 4px;
    color: #fff;
    line-height: 1;
  }
  
  .gesucht-aka {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-style: italic;
  }
  
  .gesucht-delikte {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
  }
  
  .delikt {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 4px;
    background: rgba(255,140,0,0.1);
    color: var(--orange);
    border: 1px solid rgba(255,140,0,0.25);
  }
  
  .gesucht-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px !important;
    font-weight: 500;
    color: rgba(255,255,255,0.6) !important;
    line-height: 1.55 !important;
    opacity: 1 !important;
    margin-top: 4px;
  }
  
  .gesucht-belohnung {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  
  .belohnung-wert {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--orange);
  }
  
  @media (max-width: 640px) {
    .page-header { padding-top: 100px; }
    .gesucht-main { padding: 20px 16px 80px; }
    .gesucht-inner { flex-direction: column; }
    .gesucht-photo { flex-direction: row; align-items: center; }
    .gesucht-level { width: auto; }
  }