/** Shopify CDN: Minification failed

Line 297:39 Expected "}" to go with "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:blatttrenner (INDEX:7) */
.leaf-divider {
  width: 100%;
}
.leaf-divider__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.leaf-divider__icon {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.leaf-divider__icon--flip {
  transform: scaleX(-1);
}
.leaf-divider__line {
  flex: 0 0 auto;
  border-radius: 999px;
}
/* END_SECTION:blatttrenner */

/* START_SECTION:section-banner-v1 (INDEX:21) */
@media (max-width: 767px) {
  /* Stapelt die Banner untereinander */
  [data-section-type="section-banner-v1"] .row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Setzt die Banner-Spalten auf volle Breite */
  [data-section-type="section-banner-v1"] .col-6,
  [data-section-type="section-banner-v1"] .img-banner {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin-bottom: 100px; /* Abstand zwischen den Bildern */
  }

  /* Zentriert die Bilder im Link */
  [data-section-type="section-banner-v1"] .adv-thumb-link img {
    width: 100% !important;
    height: auto !important;
  }
}
/* END_SECTION:section-banner-v1 */

/* START_SECTION:section-blog-v1 (INDEX:23) */
/* =========================================
   BLOG GRID – sauberes, gleichmäßiges Layout
   ========================================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Karte */
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.blog-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}

/* Bild – feste Höhe, immer gleich */
.blog-card__image-link {
  display: block;
}

.blog-card__image-wrap {
  width: 100%;
  padding-top: 45%; /* kompakteres Seitenverhältnis */
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}

.blog-card__image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.04);
}

/* Body */
.blog-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

/* Meta: Datum + Kategorie */
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-card__date {
  font-size: 0.8rem;
  color: #888;
  white-space: nowrap;
}

.blog-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff !important;
  background: #2a4a6b;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Titel */
.blog-card__title {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0.25rem 0 0.5rem;
  font-weight: 700;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card__title a:hover {
  color: #2a4a6b;
}

/* Read More */
.blog-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2a4a6b;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.blog-card__readmore:hover {
  gap: 8px;
}
/* END_SECTION:section-blog-v1 */

/* START_SECTION:section-info-v1-1 (INDEX:30) */
.mini-title {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 8px;
}

.text-lg-left .mini-title {
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .text-lg-right .mini-title {
    justify-content: flex-end;
  }
}

@media (max-width: 991px) {
  .mini-title {
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .mini-content {
    align-items: center;
  }
}
/* END_SECTION:section-info-v1-1 */

/* START_SECTION:section-info-v1 (INDEX:31) */
@media (max-width: 767px) {
  /* 1. Gesamten Text der Sektion auf Handy zentrieren */
  [data-section-type="section-info-v1"] .mini-content .col-12 {
    text-align: center !important;
  }

  /* 2. Titel-Container zentrieren, aber Inhalt (Icon + Text) linksbündig lassen */
  [data-section-type="section-info-v1"] .mini-title {
    display: flex !important;
    justify-content: center !important; /* Zentriert die Zeile im Viewport */
    align-items: center !important;
    text-align: left !important; /* Text bleibt links vom Icon (oder rechts davon) */
    width: 100%;
    margin-bottom: 10px;
  }

  /* 3. Icons bei "Information-right" nach links schieben */
  [data-section-type="section-info-v1"] .mini-title img {
    order: -1 !important; /* Zwingt das Bild an die erste Stelle (links) */
    padding-left: 0 !important;
    padding-right: 10px !important; /* Abstand zum Text rechts */
    margin: 0 !important;
  }

  /* 4. Beschreibungstexte zentrieren */
  [data-section-type="section-info-v1"] .mini-des {
    text-align: center !important;
    margin-bottom: 30px;
    padding: 0 15px;
  }
}


@media (max-width: 767px) {
  /* Abstand unter dem Titel verringern */
  [data-section-type="section-info-v1"] .mini-title {
    margin-bottom: 2px !important; /* Fast kein Abstand mehr */
    padding-bottom: 0 !important;
  }

  /* Abstand über der Beschreibung entfernen */
  [data-section-type="section-info-v1"] .mini-des {
    margin-top: 0 !important;
    padding-top: 0 !important;
    line-height: 1.2 !important; /* Optional: Textzeilen enger zusammen */
  }

  
  @media (max-width: 767px) {
  [data-section-type="section-info-v1"] .mini-des {
    text-align: center !important; /* Zurück auf zentriert für Ruhe im Design */
    display: inline-block !important; /* Erlaubt die Breitenbegrenzung */
    width: 100% !important;
    max-width: 280px !important; /* Verhindert, dass einzelne Wörter "verloren" wirken */
    margin: 0 auto 35px auto !important; /* Zentriert den gesamten Textblock */
    font-size: 14px !important; /* Etwas kleiner wirkt oft edler */
    line-height: 1.5 !important;
    hyphens: none !important; /* Blocksatz-Effekte ausschalten */
  }

  [data-section-type="section-info-v1"] .mini-title {
    margin-bottom: 8px !important; /* Ein klein wenig mehr Luft zum Atmen */
  }
}
/* END_SECTION:section-info-v1 */

/* START_SECTION:section-servicebox-v1 (INDEX:45) */
@media (max-width: 767px) {
  [data-section-type="section-servicebox-v1"] {
    display: none !important;
  }
}
/* END_SECTION:section-servicebox-v1 */