/* Blur overlay wrapper for loop items */
.tnr-blur-overlay-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tnr-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    color: #222;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    text-align: center;
    pointer-events: all;
    cursor: pointer;
    border-radius: 4px;
}

.tnr-blur-overlay:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* Ensure loop item parent is positioned */
[data-elementor-type="loop-item"] {
    position: relative !important;
}

/* Blur effect on all children */
[data-elementor-type="loop-item"] * {
    pointer-events: none;
}
