.ita-container-1d19527e {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 500px;
    gap: 10px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .ita-container-1d19527e {
        flex-direction: column;
        height: auto;
        min-height: 600px;
    }
}

.ita-item-1d19527e {
    flex: 1;
    display: flex;
    flex-direction: row;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background: #f5f5f5;
}

@media (max-width: 767px) {
    .ita-item-1d19527e {
        flex-direction: column;
    }
}

.ita-item-1d19527e.active {
    flex-grow: 4;
    cursor: default;
}

.ita-image-wrapper-1d19527e {
    flex: 1;
    position: relative;
    height: 100%;
    min-width: 80px;
}

@media (max-width: 767px) {
    .ita-image-wrapper-1d19527e {
        min-width: auto;
        min-height: 80px;
    }
}

.ita-image-wrapper-1d19527e img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.ita-item-1d19527e.active .ita-image-wrapper-1d19527e img {
    filter: grayscale(0%);
}

.ita-content-1d19527e {
    width: 0;
    opacity: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    transition: width 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
    white-space: nowrap;
}

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

@media (max-width: 767px) {
    .ita-content-1d19527e {
        width: 100%;
        height: 0;
        transition: height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
    }
    .ita-item-1d19527e.active .ita-content-1d19527e {
        width: 100%;
        height: auto;
        padding: 20px;
    }
}

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

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

.ita-bio-1d19527e {
    margin: 0 0 20px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

.ita-socials-1d19527e {
    display: flex;
    gap: 15px;
}

.ita-socials-1d19527e a {
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ita-socials-1d19527e a svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.ita-socials-1d19527e a:hover {
    color: #0073aa;
}
