/**
 * Kachelblock Styles
 */



.kachelblock .kachelwrapper{position:relative;z-index: 1;}
.kachelblock .kachelwrapper .row{justify-content:space-between;}
.kachelblock .kachelwrapper .item{padding:25px;background:var(--brand-accent-color);margin:25px 0;border-radius:10px;height:250px;}
.kachelblock .kachelwrapper .item .iconwrapper{display:flex;justify-content:end;}
.kachelblock .kachelwrapper .item .headline{display:block;font-size:125%;font-weight:700;margin:0 0 15px;line-height:1.2;width:90%;}
.kachelblock .kachelwrapper .item .text{display:block;line-height:1.2;}
.kachelblock .kachelwrapper .spruchmittig .item{background:none;text-align:center;align-content:center;}
.kachelblock .kachelwrapper .spruchmittig .item .spruch{font-size:250%;font-weight:700;line-height:1.2;}



/* Hintergrund-Kreislinien */
.ripple-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* Jede Kreislinie */
.ripple-bg span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(70, 70, 70, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: rippleWave 6s linear infinite;
  opacity: 0;
}

/* Zeitversatz für natürliche Wellen */
.ripple-bg span:nth-child(1) {
  animation-delay: 0s;
}

.ripple-bg span:nth-child(2) {
  animation-delay: 1.5s;
}

.ripple-bg span:nth-child(3) {
  animation-delay: 3s;
}

.ripple-bg span:nth-child(4) {
  animation-delay: 4.5s;
}


/* Animation: von innen nach außen */
@keyframes rippleWave {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }

  12% {
    opacity: 0.45;
  }

  70% {
    opacity: 0.16;
  }

  100% {
    transform: translate(-50%, -50%) scale(4.2);
    opacity: 0;
  }
}

.kachel-block-nav .link-list{justify-content:center;flex-direction:row;}
.kachel-block-nav .link-list .link-list-item{width:max-content;}


/* Responsive Adjustments */

@media (max-width: 1480px) {
    .kachelblock .kachelwrapper .item{
      height:275px;
    }
}
@media (max-width: 1199px) {
    .kachelblock .kachelwrapper .item{
      height:300px;
    }
}

@media (max-width: 767px) {
    .ripple-bg{
      overflow:hidden;
    }
}
@media(max-width:600px){
  .kachelblock .kachelwrapper .spruchmittig .item .spruch{font-size:225%;}
}