.tooltip-trigger {
    position: relative;
    text-decoration: underline dotted;
    cursor: help;
    color: #007bff;
    font-weight: bold;
}

.tooltip-trigger::after {
    content: "";
    position: absolute;
    top: 50%;                    /* vertikal zentriert */
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1f408f;
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.55);
    width: 340px;
    max-width: 92vw;
    font-size: 15.2px;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 99999;
    pointer-events: none;
}

.tooltip-trigger:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Inhalt */
.tooltip-trigger[data-tooltip-content="kaymak"]::after {
    content: "„Kaymak“ = top-notch! 🌟\A\A"
             "• Meaning: \"Kaymak\" literally translates to \"First-Class Cream\" and is the equivalent to \"top-notch\", \"premium quality\", or \"the cream of the crop\".\A"
             "• Origin: It refers to the richest, most valuable layer that rises to the top during traditional milk processing.\A"
             "• Cultural Bridge: In the Mediterranean, Middle East, and parts of Asia, \"Kaymak gibi\" (like Kaymak) means something flawless and of the highest excellence.\A"
             "• Value: This is exactly the standard I deliver – the absolute top layer of quality.";
    white-space: pre-line;
}