/** Shopify CDN: Minification failed

Line 154:10 Expected identifier but found whitespace
Line 154:11 Unexpected "30px"

**/
/* bk-section-vorteile.css 
 * Erstellt von BITSKoWeb für Lasse Lakrits
 */

.section-background-wrapper {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}

.vorteile-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Container für volle Breite */
.container-full-width {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.animated-headline {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  position: relative;
  margin-bottom: 3rem;
  text-transform: uppercase;
  font-weight: 600;
}

.headline-text-wrapper {
  position: relative;
  display: inline-block;
}

.headline-text-wrapper svg {
  position: absolute;
  width: 100%;
  height: 10px;
  left: 0;
  bottom: -5px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2px;
  stroke-linecap: round;
}

/* Text Alignment */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media screen and (max-width: 990px) {
  .vorteile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 749px) {
  .vorteile-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.vorteil-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.vorteil-item:hover {
  transform: translateY(-5px);
}

.vorteil-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vorteil-image {
  margin-bottom: 15px;
}

.vorteil-image img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.vorteil-title {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.vorteil-description {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.5;
}

.vorteil-description p {
  margin: 0;
}

/* Spalten-Konfiguration basierend auf den Einstellungen */
.vorteile-grid.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.vorteile-grid.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.vorteile-grid.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 749px) {
  .vorteile-grid.mobile-columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vorteile-grid.mobile-columns-1 {
    grid-template-columns: 1fr;
  }
}
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: center;
}

.placeholder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media screen and (max-width: 990px) {
  .placeholder {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 749px) {
  .placeholder {
    grid-template-columns: 1fr;
  }
}

.placeholder-item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.placeholder-image {
  width: 56px;
  height: 56px;
  background-color: #e0e0e0;
  border-radius: 50%;
  margin-bottom: 15px;
}

.placeholder-title {
  width: 70%;
  height: 20px;
  background-color: #e0e0e0;
  margin-bottom: 10px;
}

.placeholder-text {
  width: 90%;
  height: 40px;
  background-color: #e0e0e0;
}