/* --- LOTTIE WIDGET --- */
.starter-lottie-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.starter-lottie-player {
    width: 100%;
    height: auto;
    display: block;
}

/* Caption Style */
.starter-lottie-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #6b7280;
}

/* --- STYLE 2: ICON CARD --- */
.starter-lottie--card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    border: 1px solid #f3f4f6;
    text-align: center;
    transition: transform 0.3s ease;
}
.starter-lottie--card:hover {
    transform: translateY(-5px);
}
.starter-lottie--card .starter-lottie-container {
    margin-bottom: 20px;
    height: 100px; /* Fixed height for icon */
}
.starter-lottie--card .starter-lottie-player {
    width: 100px;
    height: 100px;
}
.starter-lottie-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}
.starter-lottie-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* --- STYLE 3: SCROLL STORY (Full) --- */
.starter-lottie--scroll {
    position: relative;
    min-height: 400px; 
    /* Usually this needs specific height container in Elementor section */
}