/* ── meistgesucht.css ── Styles für die Fahndungsseite ── */
/* Follows the exact same design language as presse.css */

.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;
}

/* ── Main Container: same as presse-main ── */
.gesucht-main {
  max-width: 900px;
  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;
}

/* ── Wanted-Liste: vertikale Liste wie Presse ── */
.gesucht-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Wanted Card: same base as presse-card ── */
.wanted-card {
  width: 100%;
  cursor: default;
}

.wanted-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

/* ── Fahndungsfoto ── */
.wanted-photo {
  width: 120px;
  min-height: 120px;
  flex-shrink: 0;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Wanted Info ── */
.wanted-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Meta-Zeile: Status + Kopfgeld (wie presse-meta) ── */
.wanted-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.wanted-reward {
  color: var(--orange);
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
}

/* Badge: exakt wie presse-badge, aber in Rot ── */
.wanted-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 3px 14px;
  border-radius: 100px;
  background: rgba(255,51,68,0.12);
  color: #ff4d5e;
  border: 1px solid rgba(255,51,68,0.35);
}

.wanted-badge.badge-caught {
  background: rgba(0,200,100,0.12);
  color: #00cc66;
  border-color: rgba(0,200,100,0.35);
}

/* ── Name: exakt wie presse-title ── */
.wanted-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1.1;
}

/* ── Beschreibung: exakt wie presse-text ── */
.wanted-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Footer: exakt wie presse-footer ── */
.wanted-footer {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 4px;
}

.wanted-sig {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,51,68,0.5);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .page-header { padding-top: 100px; }
  .gesucht-main { padding: 20px 16px 80px; }
  .wanted-name { font-size: 26px; }
  .wanted-card-inner { flex-direction: column; }
  .wanted-photo { width: 100%; height: 180px; }
}