.angie-hover-icons-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}
.elementor-post__thumbnail:hover .angie-hover-icons-overlay,
.eael-grid-post .eael-entry-media:hover .angie-hover-icons-overlay {
    opacity: 1;
    pointer-events: auto;
}
.angie-hover-icon {
    color: #fff;
    background: #222;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.elementor-post__thumbnail:hover .angie-hover-icon,
.eael-grid-post .eael-entry-media:hover .angie-hover-icon {
    transform: translateY(0);
}
.angie-hover-icon:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1) !important;
}
.elementor-post__thumbnail, .eael-entry-media {
    position: relative;
    overflow: hidden;
}