.elf-wrapper {
    display: flex;
    gap: 0px;
    width: 100%;
}

/* ===== لیست (25%) ===== */
.elf-list-area {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* هر آیتم دقیقاً 80px */
.elf-list-item {
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: white;
    cursor: pointer;
    overflow: hidden;
    box-sizing: border-box;
}

.elf-list-item span {
    overflow: hidden;
    text-overflow: ellipsis;
    
}

/* ===== تصویر (75%) ===== */
.elf-image-area {
    width: 75%;
    position: relative;
    height: 100%;
}

.elf-slide {
    display: none;
    height: 100%;
    position: relative;
}

.elf-slide.active {
    display: block;
    height: 100%;
}

.elf-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

/* overlay روی تصویر */
.elf-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(120,120,120,0.7);
    color: white;
    padding: 15px;
    box-sizing: border-box;
}

/* ===== موبایل ===== */
@media(max-width:768px){

    .elf-wrapper {
        flex-direction: column;
    }

    .elf-list-area {
        display: none;
    }

    .elf-image-area {
        width: 100%;
        height: 300px;
    }
}