/* Base Shared Styles */
.ita-wrapper-2bc8749e {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 500px;
    box-sizing: border-box;
}

.ita-item-2bc8749e {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.ita-image-2bc8749e {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.ita-image-2bc8749e img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease-in-out;
}

.ita-item-2bc8749e.is-active .ita-image-2bc8749e img {
    filter: grayscale(0%);
}

.ita-content-2bc8749e {
    width: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ita-name-2bc8749e {
    margin: 0 0 5px 0;
}

.ita-role-2bc8749e {
    margin: 0 0 15px 0;
    font-weight: normal;
}

.ita-bio-2bc8749e {
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.ita-socials-2bc8749e {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.ita-social-icon-2bc8749e {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.ita-social-icon-2bc8749e:hover {
    filter: brightness(0.9);
}

.ita-social-icon-2bc8749e svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}


/* ====================
   STANDARD STYLE
==================== */
.ita-wrapper-2bc8749e.style-standard {
    gap: 10px;
    background: transparent;
    padding: 0;
}

.ita-wrapper-2bc8749e.style-standard .ita-item-2bc8749e {
    background: #f9f9f9;
    border-radius: 8px; /* Used as default, control overrides it */
    transition: flex 0.5s ease-in-out;
}

.ita-wrapper-2bc8749e.style-standard .ita-item-2bc8749e.is-active {
    flex: 4;
}

.ita-wrapper-2bc8749e.style-standard .ita-image-2bc8749e {
    transition: width 0.5s ease-in-out;
}

.ita-wrapper-2bc8749e.style-standard .ita-item-2bc8749e.is-active .ita-image-2bc8749e {
    width: 50%;
}

.ita-wrapper-2bc8749e.style-standard .ita-content-2bc8749e {
    transition: opacity 0.4s ease-in-out, padding 0.5s ease-in-out, width 0.5s ease-in-out;
    background: transparent;
}

.ita-wrapper-2bc8749e.style-standard .ita-item-2bc8749e.is-active .ita-content-2bc8749e {
    width: 50%;
    opacity: 1;
    padding: 30px;
    overflow-y: auto;
}

.ita-wrapper-2bc8749e.style-standard .ita-name-2bc8749e {
    font-size: 24px;
}
.ita-wrapper-2bc8749e.style-standard .ita-role-2bc8749e {
    font-size: 16px;
    color: #666;
}
.ita-wrapper-2bc8749e.style-standard .ita-social-icon-2bc8749e {
    background: #e1e1e1;
    color: #333;
}


/* ====================
   PILL FLOATING STYLE
==================== */
.ita-wrapper-2bc8749e.style-pill {
    height: 450px;
    gap: 15px;
    background: #f3f4f6; 
    padding: 20px;
    border-radius: 24px; 
}

.ita-wrapper-2bc8749e.style-pill .ita-item-2bc8749e {
    background: #e2e8f0; 
    border-radius: 100px;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ita-wrapper-2bc8749e.style-pill .ita-item-2bc8749e.is-active {
    flex: 6;
    border-radius: 24px;
    background: linear-gradient(135deg, #f5dbf4 0%, #f3e6e8 100%); 
    padding: 15px;
    gap: 15px;
}

.ita-wrapper-2bc8749e.style-pill .ita-image-2bc8749e {
    border-radius: inherit;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ita-wrapper-2bc8749e.style-pill .ita-item-2bc8749e.is-active .ita-image-2bc8749e {
    width: 40%;
    border-radius: 16px;
}

.ita-wrapper-2bc8749e.style-pill .ita-content-2bc8749e {
    transition: opacity 0.4s ease-in-out, width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: #ffffff; 
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ita-wrapper-2bc8749e.style-pill .ita-item-2bc8749e.is-active .ita-content-2bc8749e {
    width: 60%;
    opacity: 1;
    padding: 30px;
    overflow-y: auto;
}

.ita-wrapper-2bc8749e.style-pill .ita-name-2bc8749e {
    font-size: 28px;
    color: #333;
}

.ita-wrapper-2bc8749e.style-pill .ita-role-2bc8749e {
    margin: 0 0 20px 0;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ita-wrapper-2bc8749e.style-pill .ita-bio-2bc8749e {
    margin: 20px 0 0 0;
    color: #666;
    font-size: 15px;
}

.ita-wrapper-2bc8749e.style-pill .ita-social-icon-2bc8749e {
    width: 36px;
    height: 36px;
    background: #f0eaf5; 
    color: #a87ebc; 
    box-shadow: inset 0 -2px 5px rgba(0,0,0,0.05);
}

.ita-wrapper-2bc8749e.style-pill .ita-social-icon-2bc8749e:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 767px) {
    /* Shared Mobile */
    .ita-wrapper-2bc8749e {
        flex-direction: column;
        height: 600px;
    }
    .ita-item-2bc8749e {
        flex-direction: column;
    }
    
    /* Standard Mobile */
    .ita-wrapper-2bc8749e.style-standard .ita-item-2bc8749e.is-active {
        flex: 3;
    }
    .ita-wrapper-2bc8749e.style-standard .ita-item-2bc8749e.is-active .ita-image-2bc8749e {
        width: 100%;
        height: 50%;
    }
    .ita-wrapper-2bc8749e.style-standard .ita-item-2bc8749e.is-active .ita-content-2bc8749e {
        width: 100%;
        height: 50%;
        padding: 20px;
    }
    
    /* Pill Mobile */
    .ita-wrapper-2bc8749e.style-pill {
        height: 700px;
        padding: 15px;
    }
    .ita-wrapper-2bc8749e.style-pill .ita-item-2bc8749e.is-active {
        flex: 5;
        flex-direction: column-reverse;
    }
    .ita-wrapper-2bc8749e.style-pill .ita-item-2bc8749e.is-active .ita-image-2bc8749e {
        width: 100%;
        height: 40%;
    }
    .ita-wrapper-2bc8749e.style-pill .ita-item-2bc8749e.is-active .ita-content-2bc8749e {
        width: 100%;
        height: 60%;
        padding: 20px;
    }
}
