/* Layout */
.ita-container-33abc585 {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
    box-sizing: border-box;
}

.ita-item-33abc585 {
    flex: 1;
    display: flex;
    flex-direction: row;
    background-color: #222;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 12px;
}

.ita-item-33abc585.ita-active-33abc585 {
    flex: 4;
    cursor: default;
}

/* Content Area */
.ita-content-33abc585 {
    width: 0;
    opacity: 0;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ita-item-33abc585.ita-active-33abc585 .ita-content-33abc585 {
    width: 50%;
    opacity: 1;
    transition-delay: 0s, 0.3s; /* delay opacity slightly for smoothness */
}

.ita-content-inner-33abc585 {
    padding: 30px;
    min-width: 250px;
}

.ita-name-33abc585 {
    margin: 0 0 5px;
    font-size: 1.5rem;
}

.ita-job-33abc585 {
    margin: 0 0 15px;
    font-size: 1rem;
    opacity: 0.8;
}

.ita-bio-33abc585 {
    margin: 0 0 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Social Icons */
.ita-socials-33abc585 {
    display: flex;
    gap: 15px;
}

.ita-social-icon-33abc585 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.ita-social-icon-33abc585:hover {
    opacity: 0.7;
}

.ita-social-icon-33abc585 svg {
    width: 1em;
    height: 1em;
}

/* Image Area */
.ita-image-wrapper-33abc585 {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.ita-image-33abc585 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s ease, transform 0.6s ease;
    display: block;
}

.ita-item-33abc585.ita-active-33abc585 .ita-image-33abc585 {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .ita-container-33abc585 {
        flex-direction: column;
    }
    
    .ita-item-33abc585 {
        flex-direction: column;
    }

    .ita-content-33abc585 {
        width: 100%;
        height: 0;
        align-items: flex-start;
        transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    }

    .ita-item-33abc585.ita-active-33abc585 .ita-content-33abc585 {
        width: 100%;
        height: auto;
        flex: 1;
    }
    
    .ita-content-inner-33abc585 {
        padding: 20px;
        min-width: 100%;
    }
}
