.tlg-image-trail-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 0 40px
}

.tlg-image-trail-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: default;
    min-height: 350px;
    height: 400px !important;
}

.tlg-image-trail-content {
    position: relative;
    z-index: 10;
    text-align: center;
    pointer-events: none;
    max-width: 800px;
    padding: 0 20px;
}

.tlg-image-trail-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.tlg-image-trail-subheading {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

.tlg-image-trail-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible; 
}

.tlg-trail-image {
    position: absolute;
    pointer-events: none;
    object-fit: contain; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    will-change: transform, opacity;
    z-index: 1;
}

.tlg-trail-image.tlg-trail-default {
    z-index: 5;
    transition: opacity 800ms ease-out;
}

.tlg-trail-image.tlg-trail-persistent {
    z-index: 5;
    opacity: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tlg-image-trail-heading {
        font-size: 32px;
    }
    
    .tlg-image-trail-subheading {
        font-size: 16px;
    }
    
    .tlg-image-trail-container {
        min-height: 500px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .tlg-image-trail-heading {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .tlg-image-trail-subheading {
        font-size: 14px;
    }
    
    .tlg-image-trail-container {
        min-height: 400px;
        height: 400px;
    }
}