.ita-container-1ec0d11c {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 400px; /* Base min-height, overridable by settings */
    height: 500px; 
    gap: 10px;
    box-sizing: border-box;
}

.ita-item-1ec0d11c {
    flex: 1 1 0;
    display: flex;
    flex-direction: row;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: #1e1e1e;
    color: #fff;
    position: relative;
}

.ita-item-1ec0d11c.is-expanded {
    flex: 5 1 0;
    cursor: default;
}

.ita-content-1ec0d11c {
    width: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.4s ease 0.1s, width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: #f7f7f7;
    color: #333;
}

.ita-content-inner-1ec0d11c {
    padding: 30px;
    min-width: 250px;
}

.ita-item-1ec0d11c.is-expanded .ita-content-1ec0d11c {
    width: 50%;
    opacity: 1;
}

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

.ita-item-1ec0d11c.is-expanded .ita-image-wrap-1ec0d11c {
    filter: grayscale(0%);
}

.ita-name-1ec0d11c { margin: 0 0 5px; font-size: 24px; }
.ita-role-1ec0d11c { margin: 0 0 15px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #666; }
.ita-bio-1ec0d11c { margin: 0 0 20px; font-size: 15px; line-height: 1.6; }

.ita-socials-1ec0d11c a {
    display: inline-block;
    margin-right: 15px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

@media (max-width: 767px) {
    .ita-container-1ec0d11c {
        flex-direction: column;
        height: auto;
        min-height: 600px;
    }
    
    .ita-item-1ec0d11c {
        flex-direction: column-reverse;
        min-height: 100px;
    }
    
    .ita-item-1ec0d11c.is-expanded {
        flex: 3 1 0;
        min-height: 350px;
    }
    
    .ita-content-1ec0d11c {
        width: 100%;
        height: 0;
        flex-direction: row;
        align-items: center;
        transition: opacity 0.4s ease 0.1s, height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .ita-item-1ec0d11c.is-expanded .ita-content-1ec0d11c {
        width: 100%;
        height: auto;
        flex-grow: 1;
    }
}
