
  .icon-card {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1rem 0.5rem;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    cursor: pointer;
  }

  .icon-card:hover {
    transform: translateY(2px);
    box-shadow: none;
  }

  .icon-wrapper {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  /* Icon ausblenden auf XS-Geräten */
  @media (max-width: 575.98px) {
    .icon-wrapper {
      display: none;
    }
  }

  /* 5 Spalten auf großen Geräten */
  @media (min-width: 992px) {
    .col-lg-1-5 {
      flex: 0 0 auto;
      width: 12.5%;
    }
  }

  /* Spezielle Darstellung bei sehr kleinen Bildschirmen (unter 330px) */
  @media (max-width: 329.98px) {
    .icon-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%;
    }

    .label {
      display: block;
      font-size: 1rem;
      line-height: 1.3;
      word-break: break-word;
    }

    .col-6 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }

/* === Aktiv-Status (per Klasse .is-active setzen) === */
.is-active {
  border: 2px solid var(--bs-danger);
  box-shadow: 0 0 0 .35rem rgba(var(--bs-danger-rgb, 220,53,69), .12);
  color: #B11C11;
  text-decoration: none;
}


