.ita-container-73228384 {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 15px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .ita-container-73228384 {
        flex-direction: column;
    }
}

.ita-item-73228384 {
    flex: 1;
    display: flex;
    position: relative;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ita-item-73228384.active {
    flex: 5;
}

.ita-image-wrap-73228384 {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    min-height: 200px;
}

.ita-item-73228384.active .ita-image-wrap-73228384 {
    flex: 0 0 50%;
}

@media (max-width: 767px) {
    .ita-item-73228384.active .ita-image-wrap-73228384 {
        flex: 0 0 40%;
    }
}

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

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

.ita-content-73228384 {
    flex: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease 0.2s;
}

.ita-item-73228384.active .ita-content-73228384 {
    flex: 0 0 50%;
    opacity: 1;
}

@media (max-width: 767px) {
    .ita-item-73228384.active .ita-content-73228384 {
        flex: 0 0 60%;
    }
}

.ita-content-inner-73228384 {
    padding: 30px;
    min-width: 250px; /* Prevent text wrap during animation */
}

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

.ita-job-73228384 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 15px;
}

.ita-bio-73228384 {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ita-social-73228384 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    color: #333;
    transition: background 0.3s ease;
}

.ita-social-73228384:hover {
    background: rgba(0,0,0,0.1);
}

.ita-social-73228384 svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.ita-social-73228384 i {
    font-size: 18px;
}