/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Aug 08 2025 | 09:59:58 */
section.anbindung-kategorie {
  max-width: 1300px !important;
  margin: 0 auto;
  padding: 3rem 1rem;
  margin-top: 100px;
}
section.anbindung-kategorie:nth-of-type(1) {
  margin-top: 0px !important;
}

.anbindungcss-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

.anbindungcss-card {
  background: #FFF;
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.anbindungcss-card:hover {
  transform: translateY(-5px);
}

.anbindungcss-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin-bottom: 1rem;
}

.anbindungcss-image-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.anbindungcss-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
}

.anbindungcss-content p {
  font-size: 0.9rem;
  color: #000000;
  line-height: 1.4;
  opacity: 0.8;
}

/* Desktop (5 Karten) */
@media (min-width: 1300px) {
  .anbindungcss-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Tablet (3 Karten) */
@media (min-width: 768px) and (max-width: 1299px) {
  .anbindungcss-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobil (2 Karten) */
@media (max-width: 767px) {
  .anbindungcss-grid {
    grid-template-columns: repeat(2, 1fr);
  }
    
 .anbindungcss-card {
 	padding: 1rem;
	max-width: 90% !important;
}
  .anbindungcss-image-wrapper img {
      width: 150px !important;
      height: auto !important;
}
    div.anbindungcss-content > p {
        max-width: 130px !important;
        font-size: 0.8em !important;
    }
}
.anbindung-kopf {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.kategorie-icon {
  height: 200px;
  width: auto;
  flex-shrink: 0;
  margin-right: 20px;
  margin-bottom: 1rem;
}

.kategorie-infos {
  flex: 1;
  min-width: 250px;
}



/* Mobil: Bild oberhalb vom Text */
@media (max-width: 767px) {
  .anbindung-kopf {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .kategorie-icon {
    margin: 0 0 1rem 0;
  }

  .kategorie-infos {
    text-align: center;
  }
}

/*.fokuspartner { border-bottom: 2px outset #ff66c4; border-radius: 6px; padding: 5px; }*/


/***MODAL*/


.anbindungcss-modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  transition: opacity 0.3s ease;
}


div > h2 > a > span > svg {
    color: #ff66c4 !important;
}

.anbindungcss-modal.active {
  display: flex;
}

.anbindungcss-modal-inner {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  color: #fff;
  text-align: center;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  /* Höhe und Scrollverhalten */
  max-height: 80vh;
  overflow-y: auto;

  /* Schöne Scrollbar für Webkit-Browser */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.anbindungcss-modal-inner::-webkit-scrollbar {
  width: 8px;
}

.anbindungcss-modal-inner::-webkit-scrollbar-track {
  background: transparent;
}

.anbindungcss-modal-inner::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.3);
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: content-box;
}

.anbindungcss-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.anbindungcss-modal-inner img {
  max-width: 200px;
  margin-bottom: 1rem;
}

.anbindungcss-modal-inner h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
     color: #FFF;
}

.anbindungcss-modal-inner p {
  font-size: 1rem;
  color: #FFF;
}
.anbindungcss-modal-inner img {
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.anbindung-outer,
.anbindung-outer-bg {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: hidden;
}

.anbindung-outer-bg {
  background-color: #f2f2f2;
}


