/* =========================================================
   teilungsversteigerung.css
   Seitenspezifische Ergaenzungen fuer teilungsversteigerung.html
   Basis: Bootstrap 5 + custom.css (wie alle anderen Seiten)
   ========================================================= */

/* ── Hero-Bild (rechts float, mobil zentriert) ── */
.tv-hero-img {
  float: right;
  max-width: 200px;
  margin: 0 0 1.5rem 1.5rem;
  text-align: center;
}
@media (max-width: 480px) {
  .tv-hero-img {
    float: none;
    max-width: 160px;
    margin: 0 auto 1.5rem;
  }
}

/* ── Pfeil-Liste (ersetzt .main-content ul) ── */
.tv-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.25rem;
}
.tv-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  border-bottom: 1px solid #eff2f6;
  font-size: 1rem;
  line-height: 1.65;
}
.tv-list li:last-child { border-bottom: none; }
.tv-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2b6cb0;
  font-weight: 700;
}

/* ── Haken-Liste (Strategie) ── */
.tv-check-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.25rem;
}
.tv-check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 2rem;
  border-bottom: 1px solid #eff2f6;
  font-size: 1rem;
  line-height: 1.65;
}
.tv-check-list li:last-child { border-bottom: none; }
.tv-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 20px; height: 20px;
  background: #2b6cb0;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
}

/* ── Prozess-Schritte ── */
.tv-process { margin: 1rem 0 1.5rem; }
.tv-step {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #dee2e6;
  align-items: flex-start;
}
.tv-step:last-child { border-bottom: none; }
.tv-step-num {
  width: 38px; height: 38px;
  min-width: 38px;
  background: #0047AB;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

/* ── Stolpersteine / Risk Cards ── */
.tv-risk-card {
  background: #f7f9fc;
  border: 1px solid #dee2e6;
  border-top: 3px solid #dc3545;
  border-radius: 6px;
  padding: 1rem;
  height: 100%;
}
.tv-risk-title {
  font-weight: 700;
  color: #dc3545;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* ── Mandanten-Karten ── */
.tv-mandate-card {
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
  height: 100%;
}
.tv-mandate-card .fw-bold {
  color: #2b6cb0;
}

/* ── Blockquote ── */
.tv-blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem 1rem 1.5rem;
  border-left: 4px solid #2b6cb0;
  background: #f0f6fb;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  font-size: 0.98rem;
  color: #1a2e45;
  line-height: 1.7;
}

/* ── Sidebar CTA (dunkelblau, wie Kanzlei-Akzent) ── */
.tv-sidebar-cta {
  background: linear-gradient(135deg, #1a2e45, #1d5c8f);
}

/* ── Sticky Sidebar Offset (unterhalb der Navbar) ── */
.tv-sidebar {
  position: sticky;
  top: 76px;
}

/* ── Accordion Anpassung (Farbe konsistent) ── */
.accordion-button:not(.collapsed) {
  background-color: #e8f0fb;
  color: #1a2e45;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.1);
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(43,108,176,.25);
}
