.counter-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  min-height: 180px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  text-align: left;
  position: relative;

  /* softer shadow statt harter border */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: solid var(--accent-sec-color) 4px;
}

/* dezenter Akzent links (wie im Screenshot) */

/* Icon oben */
.counter-icon {
  font-size: 20px;
  margin-bottom: 10px;
  opacity: 0.6;
}

/* Zahl (Hauptfokus!) */
.counter-card h4 {
  font-size: 40px;
  font-weight: 700;
  color: var(--prim-color);
  margin: 0;
}

/* kleine Beschreibung */
.counter-card p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* Titel */
.counter-card h3 {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 500;
}

.counter-card:hover,
.counter-card:active {
  -webkit-box-shadow: 5px 5px 0px 0px rgba(223, 177, 177, 0.9);
  box-shadow: 5px 5px 0px 0px rgba(223, 177, 177, 0.9);
}

.counter-card span {
  font-family: "Comica";
  font-size: xx-large;
  font-weight: bold;
  color: var(--prim-color);
}
.counter-card {
  height: 100%;
  padding: 2rem;
  text-align: center;
  border-radius: 1.25rem;
  background: #fff;
}

.counter-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.counter-number {
  color: var(--prim-color);
  font-family: 'Comica';
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.counter-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
}

.counter-card h3 {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .counter-card {
    min-height: unset;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-bottom: 1rem;
  }

}

