.ita-wrapper-4375f30c {
    display: flex;
    flex-direction: row;
    height: 500px;
    width: 100%;
    gap: 10px;
    overflow: hidden;
}

.ita-item-4375f30c {
    flex-grow: 1;
    flex-basis: 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: flex-grow 0.5s ease;
    display: flex;
    background-color: #f5f5f5;
}

.ita-item-4375f30c.is-active {
    flex-grow: 5;
    cursor: default;
}

.ita-content-area-4375f30c {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, width 0.5s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    white-space: nowrap;
}

.ita-item-4375f30c.is-active .ita-content-area-4375f30c {
    width: 50%;
    opacity: 1;
    padding: 30px;
    white-space: normal;
}

.ita-image-area-4375f30c {
    flex-grow: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ita-image-4375f30c {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.ita-item-4375f30c.is-active .ita-image-4375f30c {
    filter: grayscale(0%);
}

.ita-name-4375f30c {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.ita-title-4375f30c {
    font-size: 16px;
    color: #666;
    margin: 0 0 15px 0;
}

.ita-bio-4375f30c {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.ita-socials-4375f30c {
    display: flex;
    gap: 10px;
}

.ita-social-link-4375f30c {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .ita-wrapper-4375f30c {
        flex-direction: column;
        height: 600px;
    }
    
    .ita-item-4375f30c {
        flex-direction: column;
    }
    
    .ita-item-4375f30c.is-active {
        flex-grow: 3;
    }
    
    .ita-content-area-4375f30c {
        width: 100%;
        height: 0;
        transition: opacity 0.4s ease, height 0.5s ease;
    }
    
    .ita-item-4375f30c.is-active .ita-content-area-4375f30c {
        width: 100%;
        height: auto;
        padding: 20px;
    }
    
    .ita-image-area-4375f30c {
        width: 100%;
    }
}
