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

.ita-item-acdbc6cc {
    flex: 1;
    display: flex;
    flex-direction: row;
    transition: flex 0.5s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-right: 1px solid #fff;
}

.ita-item-acdbc6cc:last-child {
    border-right: none;
}

.ita-content-acdbc6cc {
    width: 0;
    opacity: 0;
    overflow: hidden;
    background-color: #f5f5f5;
    transition: width 0.5s ease, opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ita-content-inner-acdbc6cc {
    padding: 30px;
    min-width: 250px;
    box-sizing: border-box;
}

.ita-image-acdbc6cc {
    flex: 1;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    min-width: 50px;
}

/* Active State */
.ita-item-acdbc6cc.ita-active-acdbc6cc {
    flex: 5;
    cursor: default;
}

.ita-item-acdbc6cc.ita-active-acdbc6cc .ita-content-acdbc6cc {
    width: 50%;
    opacity: 1;
    transition: width 0.5s ease, opacity 0.5s ease 0.2s;
}

.ita-item-acdbc6cc.ita-active-acdbc6cc .ita-image-acdbc6cc {
    filter: grayscale(0%);
    flex: 1;
}

/* Mobile Stacking */
@media (max-width: 767px) {
    .ita-container-acdbc6cc {
        flex-direction: column;
        height: auto;
        min-height: 500px;
    }
    
    .ita-item-acdbc6cc {
        flex-direction: column;
        border-right: none;
        border-bottom: 1px solid #fff;
        min-height: 50px;
    }
    
    .ita-item-acdbc6cc:last-child {
        border-bottom: none;
    }
    
    .ita-content-acdbc6cc {
        width: 100%;
        height: 0;
        transition: height 0.5s ease, opacity 0.3s ease;
    }
    
    .ita-item-acdbc6cc.ita-active-acdbc6cc .ita-content-acdbc6cc {
        width: 100%;
        height: auto;
        min-height: 200px;
    }
}

.ita-name-acdbc6cc {
    margin: 0 0 10px 0;
    font-size: 1.5em;
}

.ita-job-acdbc6cc {
    font-weight: bold;
    margin-bottom: 15px;
    color: #555;
}

.ita-social-acdbc6cc {
    margin-top: 15px;
}

.ita-social-acdbc6cc a, .ita-social-acdbc6cc span {
    display: inline-block;
    color: #333;
    font-size: 20px;
}
.ita-social-acdbc6cc a:hover {
    color: #000;
}
.ita-social-acdbc6cc i {
    font-size: 24px;
}
.ita-social-acdbc6cc svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}