 #standardVersion .tb-journey {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 1.5rem 0;
    gap: 1rem;
}

/* Flip-Card Container */
#standardVersion .tb-card {
    perspective: 1000px;
    flex: 1 1 calc(25% - 1rem);
    min-width: 240px;
    max-width: 380px;
    display: flex;
    align-items: stretch;
}

#standardVersion .tb-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 30vh;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
    #standardVersion .tb-card:hover .tb-card__inner {
    transform: rotateY(180deg);
    }
}
#standardVersion .tb-card__inner.is-flipped { transform: rotateY(180deg); }

/* Vorder- und Rückseite */
#standardVersion .tb-card__front,
#standardVersion .tb-card__back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backface-visibility: hidden;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    overflow: auto; /* ensure content remains visible if long */
}

#standardVersion .tb-card__front {
    background: rgba(0,0,0,0.03);
    align-items: center;
    justify-content: center; /* sicherstellen, falls entfernt */
    padding-top: 3.2rem;     /* Platz für das Icon oben */
    padding-bottom: 2.2rem;  /* Platz für das Badge unten */
    gap: 0.25rem;            /* kleiner Abstand zwischen h5 und p */
}

#standardVersion .tb-card__back {
    background: rgba(0,0,0,0.08);
    transform: rotateY(180deg);
}

/* Badge und Icon */
#standardVersion .tb-card__icon {
    font-size: 2rem;
    margin-top: 0.8rem;
    margin-bottom: 0.5rem;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

#standardVersion .tb-card__badge {
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    background: #1e3a8a;
    color: #fff;
    border-radius: 4px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

@media (prefers-color-scheme: dark) {
    #standardVersion .tb-card__front {
    background: rgba(255,255,255,0.05);
    }
    #standardVersion .tb-card__back {
    background: rgba(255,255,255,0.08);
    }
    #standardVersion .tb-card__badge {
    background: #8ab4ff;
    color: #000;
    }
}

#standardVersion .tb-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0 0.5rem 0;
    font-size: 0.9rem;
}
#standardVersion .tb-table td {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.4rem 0.6rem;
    vertical-align: top;
    text-align: left;
}
#standardVersion .tb-table td:first-child {
    font-weight: bold;
    width: 30%;
    background: rgba(0,0,0,0.05);
}
@media (prefers-color-scheme: dark) {
    #standardVersion .tb-table td {
    border: 1px solid rgba(255,255,255,0.1);
    }
    #standardVersion .tb-table td:first-child {
    background: rgba(255,255,255,0.05);
    }
}