.bg-body-tertiary {
  --bs-bg-opacity: 1;
}

/* =========================   LAGEBILD / KENNZAHLEN========================= */

.lagebild {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.lage-kennzahlen {
  max-width: 1180px;
  margin: 2rem auto 1.5rem;
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /*border-top: 1px solid rgba(0, 0, 0, .12);*/
  /*border-bottom: 1px solid rgba(0, 0, 0, .12);*/
}

.lage-stat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem 1.2rem;
  position: relative;
  text-align: center;
}

/* Trennstrich rechts jeder Spalte, außer der letzten */

.lage-stat::after {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  right: 0;
  width: 1px;
  background: rgba(0, 0, 0, .18);
}

.lage-stat:last-child::after {
  display: none;
}

.lage-kicker {
  height: 18px;
  margin-bottom: .55rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.lage-number {
  white-space: nowrap;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  color: #d30227;
  margin-bottom: .75rem;
}

.lage-label {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 220px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  color: #262626;
}

.lage-subline {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 240px;
  margin: .4rem auto 0;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
  color: #2d8b50;
}

.lage-hinweis {
  max-width: 1180px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: .92rem;
  color: #666;
}

/* Erste schmale Spalte: Anzahl + gemeldete Beispiele   Wichtig: Die Spalte selbst wird NICHT gedreht, damit der Trennstrich rechts bleibt. */

.lage-stat-faelle {
  flex: 0 0 70px;
  width: 70px;
  max-width: 70px;
  padding: .8rem .25rem;
  justify-content: center;
  align-items: center;
  gap: .6rem;
}

.lage-stat-faelle .lage-kicker {
  display: none;
}

.lage-stat-faelle .lage-number, .lage-stat-faelle .lage-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.lage-stat-faelle .lage-number {
  font-size: 1.75rem;
  font-weight: 750;
  line-height: 1;
  color: #555;
  margin: 0;
  letter-spacing: -.02em;
}

.lage-stat-faelle .lage-label {
  min-height: 0;
  max-width: none;
  margin: 0;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #666;
  line-height: 1.15;
}

/* Tablet */

@media (max-width: 992px) {
  .lage-kennzahlen {
    flex-wrap: wrap;
  }
}

@media (max-width: 992px) {
  .lage-stat, .lage-stat-faelle {
    flex: 0 0 50%;
    width: auto;
    max-width: none;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
  }
}

@media (max-width: 992px) {
  .lage-stat-faelle {
    flex-direction: row;
    gap: .75rem;
  }
}

@media (max-width: 992px) {
  .lage-stat-faelle .lage-number, .lage-stat-faelle .lage-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
}

@media (max-width: 992px) {
  .lage-stat:nth-child(even)::after {
    display: none;
  }
}

/* Mobil */

@media (max-width: 576px) {
  .lage-kennzahlen {
    display: block;
  }
}

@media (max-width: 576px) {
  .lage-stat, .lage-stat-faelle {
    width: 100%;
    max-width: none;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
  }
}

@media (max-width: 576px) {
  .lage-stat::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .lage-stat:last-child {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .lage-stat-faelle {
    flex-direction: row;
  }
}

@media (max-width: 576px) {
  .lage-stat-faelle .lage-number, .lage-stat-faelle .lage-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
}

@media (max-width: 576px) {
  .lage-label, .lage-subline {
    min-height: auto;
  }
}

