.mental-health {
    background: #fff;
    padding: 0;
    overflow: hidden;
    height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    transform: rotate(-15deg);
    width: 150%;
    height: 150%;
    align-content: space-between;
    margin: -25% -25%;
}

.text-grid span {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    line-height: 0.8;
    flex: 1 1 auto;
    min-width: 0;
}

.text-grid .highlight {
    color: #00e600;
    font-size: 2rem;
    z-index: 10;
    opacity: 1;
    flex: 2 1 auto;
}

/* Positioning der anderen Texte um das Highlight herum */

@media (max-width: 768px) {
    .text-grid {
        gap: 5px;
    }

    .text-grid span {
        font-size: 1rem;
    }

    .text-grid .highlight {
        font-size: 2rem;
    }
}