.ia1-container-0cdf177e {
    display: flex;
    width: 100%;
    height: 780px; /* Updated height */
    gap: 10px;
}
.ia1-item-0cdf177e {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    background: #000;
}
.ia1-item-0cdf177e.active {
    flex: 4;
    cursor: default;
}
.ia1-bg-0cdf177e {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.6s ease, width 0.6s ease, left 0.6s ease;
    z-index: 1;
}
/* Ensure the image doesn't disappear when active */
.ia1-item-0cdf177e.active .ia1-bg-0cdf177e {
    filter: grayscale(0%);
    width: 50%;
    left: 50%;
}
.ia1-content-0cdf177e {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    pointer-events: none;
    box-sizing: border-box;
}
.ia1-item-0cdf177e.active .ia1-content-0cdf177e {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.ia1-name-0cdf177e { margin: 0 0 5px; font-size: 24px; }
.ia1-job-0cdf177e { margin: 0 0 15px; font-size: 16px; opacity: 0.8; }
.ia1-bio-0cdf177e { font-size: 14px; line-height: 1.5; margin-bottom: 20px; }
.ia1-social-0cdf177e a { color: inherit; text-decoration: underline; margin-right: 15px; font-weight: bold; }

@media (max-width: 767px) {
    .ia1-container-0cdf177e {
        flex-direction: column;
        height: auto;
        min-height: 780px;
    }
    .ia1-item-0cdf177e {
        min-height: 80px;
        flex-direction: column;
    }
    .ia1-item-0cdf177e.active {
        min-height: 500px;
    }
    .ia1-item-0cdf177e.active .ia1-bg-0cdf177e {
        width: 100%;
        height: 50%;
        top: 50%;
        left: 0;
    }
    .ia1-content-0cdf177e {
        width: 100%;
        height: 50%;
        padding: 20px;
    }
}