.ita-accordion-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #111;
}

.ita-member-strip {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    flex-basis: 0;
    overflow: hidden;
    transition: flex-grow 0.6s cubic-bezier(0.25, 1, 0.5, 1), flex-basis 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    background-color: #1a1a1a;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ita-member-strip:last-child {
    border-right: none;
}

.ita-member-strip.is-active {
    flex-grow: 4;
}

/* Grayscale Image Filter */
.ita-member-image-wrapper {
    position: relative;
    flex: 1 0 100%;
    height: 100%;
    overflow: hidden;
}

.ita-member-strip.is-active .ita-member-image-wrapper {
    flex: 0 0 50%;
}

.ita-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.ita-member-strip.is-active .ita-member-img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

/* Content Panel on Left */
.ita-member-content {
    flex: 0 0 0%;
    opacity: 0;
    pointer-events: none;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    background: #111;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.ita-member-strip.is-active .ita-member-content {
    flex: 0 0 50%;
    opacity: 1;
    pointer-events: auto;
}

.ita-member-content-inner {
    padding: 40px;
    width: 100%;
    min-width: 250px;
}

.ita-member-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
}

.ita-member-role {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.ita-member-bio {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px 0;
    opacity: 0.8;
}

.ita-social-links {
    display: flex;
    gap: 12px;
}

.ita-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.ita-social-link svg {
    transition: fill 0.3s ease;
}

.ita-social-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

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

    .ita-member-strip {
        flex-direction: column;
        height: 100px;
        flex-basis: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ita-member-strip.is-active {
        flex-grow: 1;
        height: auto;
    }

    .ita-member-image-wrapper {
        flex: 1 0 100%;
        height: 200px;
    }

    .ita-member-strip.is-active .ita-member-image-wrapper {
        flex: 1 0 100%;
        height: 250px;
    }

    .ita-member-content {
        flex: 0 0 0%;
        display: none;
    }

    .ita-member-strip.is-active .ita-member-content {
        flex: 1 0 auto;
        display: block;
    }
    
    .ita-member-content-inner {
        padding: 24px;
    }
}
