.ihp-stakeholder{
    width: 100%;
    overflow: hidden;
    /* display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem; */
    display: grid;
    grid-template-columns: 6rem 1fr;
    row-gap: 1rem;
    column-gap: 4.25rem;
    position: relative;
}
/* .ihp-stakeholder-panel{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 2rem;
    position: sticky;
    top: calc(70px + 1rem);
    left: 0;
} */
/* .ihp-stakeholder-items{
    width: 6rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
} */
.ihp-stakeholder-item{
    height: 2rem;
    aspect-ratio: 3 / 1;
    padding: 1rem;
    background-color: #BF8D4E;
    border-radius: 0 0.5rem 0.5rem 0;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    transform: translateX(-4rem);
}
.ihp-stakeholder-item.active{
    opacity: 1;
    transform: translateX(-2rem);
}
.ihp-stakeholder-item img{
    height: 100%;
    aspect-ratio: 1 / 1;
    display: block;
}
.ihp-stakeholder-scrollbar{
    /* background-color: #FDF3E4;
    position: relative; */
    width: 0.25rem;
    height: 100%;
    background-color: #FDF3E4;
    position: absolute;
    top: 0;
    left: 8rem;
}
/* .ihp-stakeholder-scroll{
    width: 100%;
    height: calc((100% - 7rem) / 8);
    background-color: #BF8D4E;
    transition: all 0.15s ease;
    position: absolute;
    top: calc(((100% - 7rem) / 8 + 1rem) * var(--item));
} */
/* .ihp-stakeholder-container{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
} */
.ihp-stakeholder-wrapper{
    width: 100%;
    opacity: 0.5;
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.ihp-stakeholder-wrapper.active{
    opacity: 1;
}
.ihp-stakeholder-wrapper::after{
    content: "";
    width: 0.25rem;
    height: 100%;
    background-color: #BF8D4E;
    opacity: 0;
    transition: all;
    position: absolute;
    left: -2.25rem;
}
.ihp-stakeholder-wrapper.active::after{
    opacity: 1;
}