

body .post {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body .post.postvisible {
  opacity: 1;
  transform: translateY(0);
}


.checkicon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    flex: 0 0 22px;         /* verhindert Safari-Flex-Bugs */
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .6s ease, transform .6s ease;
}

.checkicon.visible {
    opacity: 1;
    transform: translateX(0);
}

.checklist-text {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .6s ease, transform .6s ease;
}

.checklist-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.checkwhite {
  display: inline-block;
}
.checkgreen {
  display: none;
}

.page-node-type-corporate .checkgreen {
  display: inline-block;
}
.page-node-type-corporate .checkwhite {
  display: none;
}


/* Sticky Navigation Beispiel */
.stickynav {
  transition: all 0.3s ease;
}

.image-container img,
.img-container img {
  transform: scale(var(--scale, 1));
  transition: transform 0.1s linear;
  will-change: transform;
}
