/* Interactive Team Accordion 59310000 */

.ita-59310000-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 12px;
    box-sizing: border-box;
}

.ita-59310000-item {
    position: relative;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    min-width: 0;
    overflow: hidden;
    cursor: pointer;
    filter: grayscale(100%);
    transition: flex-grow 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    box-sizing: border-box;
}

.ita-59310000-item:last-child {
    border-right: none;
}

.ita-59310000-item.ita-59310000-active {
    flex-grow: 5;
    filter: grayscale(0%);
}

/* Background image layer */
.ita-59310000-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Collapsed strip label */
.ita-59310000-strip-label {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    padding: 20px 8px;
    transition: opacity 0.3s ease;
}

.ita-59310000-strip-label span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Position: Bottom */
.ita-59310000-wrapper.ita-59310000-position-bottom .ita-59310000-strip-label {
    bottom: 0;
    top: auto;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}

/* Position: Top */
.ita-59310000-wrapper.ita-59310000-position-top .ita-59310000-strip-label {
    top: 0;
    bottom: auto;
    align-items: flex-start;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, transparent 100%);
}

/* Orientation: Vertical */
.ita-59310000-wrapper.ita-59310000-orientation-vertical .ita-59310000-strip-label span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

/* Orientation: Horizontal */
.ita-59310000-wrapper.ita-59310000-orientation-horizontal .ita-59310000-strip-label span {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    transform: none;
}

.ita-59310000-active .ita-59310000-strip-label {
    opacity: 0;
    pointer-events: none;
}

/* Content overlay — left side of expanded item */
.ita-59310000-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.55) 50%, transparent 100%);
}

.ita-59310000-active .ita-59310000-content {
    opacity: 1;
    pointer-events: auto;
}

.ita-59310000-content-inner {
    padding: 30px 35px;
    max-width: 55%;
    box-sizing: border-box;
}

.ita-59310000-name {
    margin: 0 0 4px 0;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.ita-59310000-job-title {
    margin: 0 0 14px 0;
    font-size: 14px;
    font-weight: 500;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ita-59310000-social {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.ita-59310000-social-link {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ita-59310000-social-link svg {
    fill: #ffffff;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.ita-59310000-social-link:hover {
    color: #64b5f6;
    transform: translateY(-2px);
}

.ita-59310000-social-link:hover svg {
    fill: #64b5f6;
}

.ita-59310000-bio {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;\n}\n\n.ita-59310000-bio p {\n    margin: 0 0 8px 0;\n}\n\n.ita-59310000-bio p:last-child {\n    margin-bottom: 0;\n}\n\n.ita-59310000-bio a {\n    color: #64b5f6;\n    text-decoration: underline;\n}\n\n.ita-59310000-bio a:hover {\n    color: #90caf9;\n}\n\n.ita-59310000-bio ul,\n.ita-59310000-bio ol {\n    margin: 4px 0 8px 16px;\n    padding: 0;\n}\n\n.ita-59310000-bio li {\n    margin-bottom: 2px;\n}\n\n/* ── Mobile: stack vertically ── */\n@media (max-width: 767px) {\n    .ita-59310000-wrapper {\n        flex-direction: column;\n        height: auto !important; /* Managed by items instead */\n    }\n\n    .ita-59310000-item {\n        flex-grow: 0;\n        flex-shrink: 0;\n        flex-basis: auto;\n        height: 100px; /* Default overridden by control */\n        border-right: none;\n        border-bottom: 1px solid rgba(255, 255, 255, 0.15);\n        transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;\n    }\n\n    .ita-59310000-item:last-child {\n        border-bottom: none;\n    }\n\n    .ita-59310000-item.ita-59310000-active {\n        flex-grow: 0;\n        height: 450px; /* Default overridden by control */\n    }\n\n    .ita-59310000-strip-label {\n        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%) !important;\n        align-items: center !important;\n        justify-content: flex-start !important;\n        padding: 0 20px !important;\n        top: 0 !important;\n        bottom: auto !important;\n    }\n\n    .ita-59310000-strip-label span {\n        writing-mode: horizontal-tb !important;\n        text-orientation: initial !important;\n        transform: none !important;\n        font-size: 13px !important;\n    }\n\n    .ita-59310000-content-inner {\n        max-width: 100%;\n        padding: 20px;\n    }\n\n    .ita-59310000-name {\n        font-size: 22px;\n    }\n\n    .ita-59310000-bio {\n        font-size: 13px;\n    }\n}