.tooltip-content-d695835e {
    font-family: Georgia, "Times New Roman", Times, serif; /* Elegant Serif fallback */
    line-height: 1.6;
}

.tooltip-trigger-d695835e {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 0 4px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.tooltip-image-wrap-d695835e {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Pop-up scale effect */
    z-index: 999;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #fff;
    /* width is controlled via Elementor settings, default 120px */
}

/* Tooltip arrow/triangle */
.tooltip-image-wrap-d695835e::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.tooltip-trigger-d695835e:hover .tooltip-image-wrap-d695835e {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.tooltip-image-wrap-d695835e img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}