/* ── BBR Stellenanzeigen ────────────────────────────────────── */

.bbr-st-wrap { padding: 8px 0 32px; }

/* Filter-Leiste */
.bbr-st-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: flex-end;
  background: #f6f7f9;
  border: 1px solid #e4e7ed;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.bbr-st-filter-group { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 160px; }
.bbr-st-filter-group label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #888; }
.bbr-st-filter-group select {
  padding: 8px 10px;
  border: 1px solid #dde1e8;
  border-radius: 7px;
  font-size: 13px;
  background: #fff;
  color: #333;
  cursor: pointer;
  min-width: 0;
}
.bbr-st-filter-group select:focus { outline: none; border-color: #ad0018; }
.bbr-st-filter-btns { display: flex; gap: 8px; align-items: flex-end; padding-top: 16px; }
.bbr-st-btn-primary {
  background: #ad0018;
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
  text-decoration: none;
  display: inline-block;
}
.bbr-st-btn-primary:hover { background: #8a0013; color: #fff; }
.bbr-st-btn-reset {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  padding: 9px 4px;
  white-space: nowrap;
}
.bbr-st-btn-reset:hover { color: #ad0018; }

/* Ergebniszahl */
.bbr-st-result-count {
  font-size: 13px;
  color: #888;
  margin: 0 0 18px;
}
.bbr-st-result-count strong { color: #222; }

/* 3er-Raster */
.bbr-st-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .bbr-st-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .bbr-st-grid { grid-template-columns: 1fr; }
  .bbr-st-filters { padding: 14px 16px; }
}

/* Karte */
.bbr-st-card {
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow .2s, transform .15s;
}
.bbr-st-card:hover { box-shadow: 0 6px 20px rgba(173,0,24,.10); transform: translateY(-2px); }

/* Logo */
.bbr-st-card-logo { margin-bottom: 10px; }
.bbr-st-logo-img  { max-width: 140px; max-height: 56px; width: auto; height: auto; object-fit: contain; display: block; }
.bbr-st-single-logo { margin-bottom: 20px; }
.bbr-st-single-logo .bbr-st-logo-img { max-width: 200px; max-height: 80px; }

/* Tags */
.bbr-st-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 4px; }
.bbr-st-tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.bbr-st-tag--anst { background: #fce8eb; color: #ad0018; }
.bbr-st-tag--br   { background: #f5f5f5; color: #555; }

/* Titel */
.bbr-st-position {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.3;
}

/* Meta */
.bbr-st-company,
.bbr-st-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #666;
  margin: 0;
}
.bbr-st-company svg,
.bbr-st-location svg { flex-shrink: 0; color: #aaa; }

/* Beschreibung */
.bbr-st-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.55;
  margin: 4px 0 0;
}

/* Berufsfeld */
.bbr-st-fields { font-size: 11px; color: #aaa; margin: 2px 0 0; }

/* Stellenbeginn */
.bbr-st-start { font-size: 12px; color: #999; margin: 2px 0 0; }

/* Footer / Button */
.bbr-st-card-footer { margin-top: auto; padding-top: 14px; }
.bbr-st-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ad0018;
  color: #fff;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  transition: background .15s;
}
.bbr-st-apply-btn:hover { background: #8a0013; color: #fff; }
.bbr-st-apply-btn svg { transition: transform .15s; }
.bbr-st-apply-btn:hover svg { transform: translateX(3px); }

/* Leer-Zustand */
.bbr-st-empty { text-align: center; padding: 40px 0; color: #aaa; }
.bbr-st-empty p { font-size: 15px; }

/* ── Einzelseite ─────────────────────────────────────────────── */
.bbr-st-single {
  max-width: 760px;
  margin: 32px auto 60px;
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 14px;
  padding: 40px 44px;
}
@media (max-width: 600px) {
  .bbr-st-single { padding: 24px 18px; }
}
.bbr-st-single-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 16px;
  line-height: 1.25;
}
.bbr-st-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 24px;
}
.bbr-st-single-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #555;
}
.bbr-st-single-meta-item svg { color: #aaa; flex-shrink: 0; }
.bbr-st-apply-btn--top { margin-bottom: 28px; }
.bbr-st-divider {
  border: none;
  border-top: 1px solid #e4e7ed;
  margin: 0 0 28px;
}
.bbr-st-single-block { margin-bottom: 28px; }
.bbr-st-single-h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #ad0018;
  margin: 0 0 12px;
}
.bbr-st-single-text {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin: 0;
}
.bbr-st-single-list {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}
.bbr-st-single-list li {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 4px;
}
.bbr-st-single-apply {
  border-top: 1px solid #e4e7ed;
  padding-top: 24px;
  margin-top: 12px;
}
.bbr-st-back { margin-top: 24px; }
.bbr-st-back a { font-size: 14px; color: #888; text-decoration: none; }
.bbr-st-back a:hover { color: #ad0018; }
