.ies-container-80e6366f {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
}

.ies-panel-80e6366f {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: flex 0.5s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.ies-panel-80e6366f:hover,
.ies-panel-80e6366f:focus {
    outline: none;
}

.ies-panel-80e6366f.active {
    flex: 3;
}

.ies-bg-80e6366f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.ies-overlay-80e6366f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

.ies-content-80e6366f {
    position: relative;
    z-index: 3;
    padding: 30px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.ies-text-wrap-80e6366f {
    width: 100%;
}

.ies-title-80e6366f {
    margin: 0 0 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ies-short-desc-80e6366f {
    margin: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ies-full-desc-80e6366f {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
}

.ies-full-desc-inner-80e6366f {
    padding-top: 15px;
}

.ies-panel-80e6366f.active .ies-title-80e6366f {
    white-space: normal;
}

.ies-panel-80e6366f.active .ies-full-desc-80e6366f {
    max-height: 500px; /* arbitrary large value for transition */
    opacity: 1;
    pointer-events: auto;
}

/* Mobile responsive - switch to vertical stack */
@media (max-width: 767px) {
    .ies-container-80e6366f {
        flex-direction: column;
    }
    
    .ies-panel-80e6366f {
        min-height: 150px;
    }
    
    .ies-panel-80e6366f.active {
        min-height: 350px;
    }
}