.ita-e30942d0-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
    gap: 10px;
    box-sizing: border-box;
}

.ita-e30942d0-item {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    background-color: #ffffff;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
    cursor: pointer;
}

.ita-e30942d0-item.active {
    flex: 3;
    cursor: default;
}

.ita-e30942d0-content {
    flex: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, visibility 0.4s ease;
    overflow: hidden;
}

.ita-e30942d0-item.active .ita-e30942d0-content {
    flex: 1.2;
    width: auto;
    opacity: 1;
    visibility: visible;
}

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

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

.ita-e30942d0-text-area {
    min-width: 200px;
}

.ita-e30942d0-name {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.ita-e30942d0-title {
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

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

.ita-e30942d0-socials {
    display: flex;
    gap: 12px;
}

.ita-e30942d0-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ita-e30942d0-social-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* Mobile responsive stacking */
@media screen and (max-width: 767px) {
    .ita-e30942d0-container {
        flex-direction: column;
        height: auto !important;
    }

    .ita-e30942d0-item {
        flex-direction: column-reverse;
        height: 120px;
        transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .ita-e30942d0-item.active {
        flex: none;
        height: auto;
    }

    .ita-e30942d0-image-holder {
        height: 120px;
        flex: none;
        width: 100%;
    }

    .ita-e30942d0-item.active .ita-e30942d0-image-holder {
        height: 200px;
    }

    .ita-e30942d0-content {
        padding: 20px;
    }
}
