.ita-container-8be08086 {
    display: flex;
    flex-direction: row;
    height: 400px;
    gap: 10px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .ita-container-8be08086 {
        flex-direction: column;
        height: auto;
        min-height: 600px;
    }
}

.ita-item-8be08086 {
    flex: 1;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    transition: flex 0.5s ease;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    background: #f5f5f5;
}

.ita-item-8be08086.active {
    flex: 4;
}

@media (max-width: 767px) {
    .ita-item-8be08086 {
        flex-direction: column;
    }
}

.ita-content-8be08086 {
    flex: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, flex 0.5s ease, padding 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    white-space: nowrap;
}

.ita-item-8be08086.active .ita-content-8be08086 {
    flex: 1;
    opacity: 1;
    padding: 20px;
    white-space: normal;
}

.ita-image-8be08086 {
    flex: 1;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    min-width: 80px;
    min-height: 80px;
}

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

.ita-member-name {
    margin: 0 0 5px 0;
    font-size: 24px;
}

.ita-member-job {
    font-weight: bold;
    margin-bottom: 10px;
    color: #666;
}

.ita-social-links {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.ita-social-links a {
    color: #333;
    transition: color 0.3s;
}
.ita-social-links a:hover {
    color: #0073aa;
}