.ita-wrapper-d2f1c68d {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 450px;
    gap: 15px;
    overflow: hidden;
}

.ita-item-d2f1c68d {
    flex-grow: 1;
    flex-basis: 0;
    display: flex;
    flex-direction: row;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    transition: flex-grow 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.ita-item-d2f1c68d.active {
    flex-grow: 5;
    cursor: default;
}

.ita-content-wrapper-d2f1c68d {
    width: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: opacity 0.4s ease, width 0.6s ease;
    background: #fff;
    padding: 0;
    white-space: nowrap;
}

.ita-item-d2f1c68d.active .ita-content-wrapper-d2f1c68d {
    width: 45%;
    opacity: 1;
    padding: 30px;
    white-space: normal;
}

.ita-content-d2f1c68d {
    min-width: 250px;
}

.ita-name-d2f1c68d {
    margin: 0 0 5px;
    font-size: 24px;
}

.ita-job-d2f1c68d {
    margin: 0 0 15px;
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ita-bio-d2f1c68d {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.ita-social-d2f1c68d a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eee;
    color: #333;
    transition: background 0.3s, color 0.3s;
}

.ita-social-d2f1c68d a:hover {
    background: #333;
    color: #fff;
}

.ita-image-d2f1c68d {
    flex-grow: 1;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

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

@media (max-width: 767px) {
    .ita-wrapper-d2f1c68d {
        flex-direction: column;
        height: 600px;
    }
    .ita-item-d2f1c68d {
        flex-direction: column;
    }
    .ita-item-d2f1c68d.active .ita-content-wrapper-d2f1c68d {
        width: 100%;
        height: auto;
        padding: 20px;
    }
    .ita-content-wrapper-d2f1c68d {
        width: 100%;
        height: 0;
    }
    .ita-content-d2f1c68d {
        min-width: 100%;
    }
}