/* Totem Grid Interface Styles */

.totem-grid-images {
    position: relative;
    overflow: hidden;
}

.totem-grid-image-default {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.totem-grid-image-default img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.totem-grid-image-active {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.totem-grid-image-active img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

/* Active state styles for totem loop grid items */
.totem-loop-grid-item.active {
    background-color: #606161 !important;
}

.totem-loop-grid-item.active .totem-grid-image-default {
    opacity: 0;
    visibility: hidden;
}

.totem-loop-grid-item.active .totem-grid-image-active {
    opacity: 1;
    visibility: visible;
}

.totem-loop-grid-item.active .totem-loop-grid-item-title .elementor-heading-title {
    color: var( --e-global-color-813b02d ) !important;
}