.vorteilsboxen__title {
  margin-bottom: 34px;
}

.vorteilsboxen__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.vorteilsboxen__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  aspect-ratio: 1 / 1;
  padding: 24px 18px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vorteilsboxen__item:hover {
  background: var(--blue-dark);
  transform: translateY(-4px);
}

.vorteilsboxen__item svg {
  width: 58px;
  height: 58px;
}

.vorteilsboxen__label {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .vorteilsboxen__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
