# box
.feature-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.feature-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.feature-box {
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  padding: 0.75rem;
  background: #fff;
  font-family: sans-serif;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  font-size: 0.85rem;
  flex: 1 1 280px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border-color: #8B0000;
}

.feature-box__image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
  z-index: 1;
}

.feature-box__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  z-index: 1;
}

.feature-box__title {
  color: #8B0000;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.feature-box__text,
.feature-box__list {
  font-size: 0.85rem;
  color: #222;
  margin-bottom: 0.8rem;
  padding-left: 0;
}

.feature-box__list li {
  margin-bottom: 0.25rem;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.icon {
  color: #8B0000;
  flex-shrink: 0;
}

.feature-box__spacer {
  flex-grow: 1;
} 

#bild im text

  

