.ita-02169cf9-container {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.ita-02169cf9-item {
    flex: 1;
    display: flex;
    flex-direction: row;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.ita-02169cf9-item.is-active {
    flex: 5;
    cursor: default;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ita-02169cf9-content {
    width: 300px;
    min-width: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0s;
}

.ita-02169cf9-item.is-active .ita-02169cf9-content {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.ita-02169cf9-name { 
    margin: 0 0 5px 0; 
    font-size: 24px; 
    color: #333; 
}
.ita-02169cf9-job { 
    font-weight: 600; 
    color: #666; 
    margin-bottom: 15px; 
    text-transform: uppercase; 
    font-size: 13px; 
    letter-spacing: 1px; 
}
.ita-02169cf9-bio { 
    font-size: 15px; 
    line-height: 1.6; 
    color: #555; 
    margin-bottom: 20px; 
}
.ita-02169cf9-socials a { 
    margin-right: 15px; 
    color: #0073aa; 
    text-decoration: none; 
    font-weight: 500; 
}
.ita-02169cf9-socials a:hover { 
    text-decoration: underline; 
}

.ita-02169cf9-image-wrap {
    flex-grow: 1;
    height: 100%;
    min-width: 80px;
    position: relative;
    overflow: hidden;
}

.ita-02169cf9-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

.ita-02169cf9-item.is-active .ita-02169cf9-img {
    filter: grayscale(0%);
}

.ita-02169cf9-item:not(.is-active):hover .ita-02169cf9-img {
    filter: grayscale(50%);
}

/* Mobile */
@media (max-width: 767px) {
    .ita-02169cf9-container {
        flex-direction: column;
        height: 800px;
    }
    .ita-02169cf9-item {
        flex-direction: column;
    }
    .ita-02169cf9-content {
        width: 100%;
        min-width: auto;
        padding: 20px;
        order: 2; /* Content below image on mobile for expanded state */
    }
    .ita-02169cf9-image-wrap {
        min-height: 80px;
        min-width: 100%;
        order: 1;
    }
}
