.ita-container-423bb5f2 {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 400px;
    gap: 10px;
    overflow: hidden;
}

.ita-item-423bb5f2 {
    flex: 1;
    display: flex;
    flex-direction: row;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s ease-in-out;
    background-color: #f5f5f5;
}

.ita-item-423bb5f2.ita-active-423bb5f2 {
    flex: 5;
    cursor: default;
}

.ita-content-423bb5f2 {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.5s ease-in-out, opacity 0.3s ease-in-out 0.2s;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.ita-item-423bb5f2.ita-active-423bb5f2 .ita-content-423bb5f2 {
    width: 40%;
    opacity: 1;
}

.ita-content-inner-423bb5f2 {
    padding: 30px;
    min-width: 250px;
}

.ita-title-423bb5f2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: bold;
}

.ita-desc-423bb5f2 {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.ita-image-wrapper-423bb5f2 {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ita-image-423bb5f2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.ita-item-423bb5f2:hover .ita-image-423bb5f2 {
    filter: grayscale(50%);
}

.ita-item-423bb5f2.ita-active-423bb5f2 .ita-image-423bb5f2 {
    filter: grayscale(0%);
}

/* Mobile Stack */
@media (max-width: 767px) {
    .ita-container-423bb5f2 {
        flex-direction: column;
        height: 600px;
    }
    
    .ita-item-423bb5f2 {
        flex-direction: column;
    }
    
    .ita-content-423bb5f2 {
        width: 100%;
        height: 0;
        transition: height 0.5s ease-in-out, opacity 0.3s ease-in-out 0.2s;
    }
    
    .ita-item-423bb5f2.ita-active-423bb5f2 .ita-content-423bb5f2 {
        width: 100%;
        height: 40%;
    }
    
    .ita-content-inner-423bb5f2 {
        padding: 20px;
        min-width: 0;
    }
}
