.ita-container-95ba4ac6 {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 500px;
    background: #000;
    overflow: hidden;
    border-radius: 8px;
}

.ita-item-95ba4ac6 {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border-right: 1px solid rgba(255,255,255,0.1);
}

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

.ita-item-95ba4ac6.active {
    flex: 4;
    cursor: default;
}

.ita-content-95ba4ac6 {
    width: 0;
    opacity: 0;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: width 0.6s ease, opacity 0.4s ease;
}

.ita-content-inner-95ba4ac6 {
    padding: 30px;
    width: 300px; /* Fixed width prevents reflow during flex-grow transition */
    box-sizing: border-box;
}

.ita-item-95ba4ac6.active .ita-content-95ba4ac6 {
    width: 300px;
    opacity: 1;
}

.ita-image-wrap-95ba4ac6 {
    flex: 1;
    height: 100%;
    min-width: 0;
    position: relative;
}

.ita-image-wrap-95ba4ac6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

.ita-item-95ba4ac6.active .ita-image-wrap-95ba4ac6 img {
    filter: grayscale(0%);
}

.ita-name-95ba4ac6 {
    margin: 0 0 5px 0;
    font-size: 24px;
}

.ita-title-95ba4ac6 {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

.ita-bio-95ba4ac6 {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ita-social-95ba4ac6 {
    display: inline-block;
    font-size: 20px;
    color: #333;
    transition: color 0.3s ease;
}

.ita-social-95ba4ac6 svg {
    width: 20px;
    height: 20px;
    fill: #333;
}

/* Mobile Stacking */
@media (max-width: 767px) {
    .ita-container-95ba4ac6 {
        flex-direction: column;
        height: auto;
        min-height: 600px;
    }
    .ita-item-95ba4ac6 {
        flex-direction: column;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        height: 100px;
        flex: none;
        transition: height 0.6s ease;
    }
    .ita-item-95ba4ac6.active {
        height: 400px;
        flex: none;
        flex-direction: column-reverse; /* Put image on top on mobile, content bottom */
    }
    .ita-content-95ba4ac6 {
        width: 100%;
        height: 0;
        transition: height 0.6s ease, opacity 0.4s ease;
    }
    .ita-item-95ba4ac6.active .ita-content-95ba4ac6 {
        width: 100%;
        height: auto;
    }
    .ita-content-inner-95ba4ac6 {
        width: 100%;
    }
}