 
/*  Wrapper */
.wsm-portfolio {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 100vh;
}

/*  Background layers  */
.wsm-portfolio-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.wsm-portfolio-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 450ms ease;
    will-change: opacity;
}
 
.wsm-portfolio-bg::after {
    content: '';
    position: absolute;
    inset: 0;
}
 
.wsm-portfolio-bg.is-active {
    opacity: 1;
}
 
.wsm-portfolio-list-wrap {
    position: relative;
    z-index: 1;
    width: 45%;
    max-height: 60vh;
    overflow-y: scroll;   
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,0.6) 15%,
        black 40%,
        black 60%,
        rgba(0,0,0,0.6) 85%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,0.6) 15%,
        black 40%,
        black 60%,
        rgba(0,0,0,0.6) 85%,
        transparent 100%
    );
 
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.wsm-portfolio-list-wrap::-webkit-scrollbar {
    display: none;
}
 
.wsm-portfolio-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px; 
    padding-top: 30vh;
    padding-bottom: 30vh;
} 
.wsm-portfolio-item {
    cursor: pointer;
    transition: background-color 200ms ease;
    list-style: none;
}

.wsm-portfolio-item-inner {
    display: flex;
    align-items: baseline;
    gap: 16px;
    transition: transform 250ms ease, opacity 250ms ease;
    opacity: 0.45; 
} 
.wsm-portfolio-item.is-active .wsm-portfolio-item-inner,
.wsm-portfolio-item:hover .wsm-portfolio-item-inner {
    opacity: 1; 
}
 
.wsm-portfolio-name {
    display: inline-block;
	width:50%;
}

.wsm-portfolio-year {
    display: inline-block;
}
.wsm-portfolio-pictures{
	position:relative;
	margin-left:70px;
}
.wsm-portfolio-pictures img.wsm-portfolio-picture {
    position: absolute;
	opacity:0;
	transition: transform 250ms ease, opacity 250ms ease;
}
.wsm-portfolio-item.is-active .wsm-portfolio-pictures img.wsm-portfolio-picture { 
	opacity:1;
	transition: transform 250ms ease, opacity 250ms ease;
}
@media (max-width: 767px) {
  div.wsm-portfolio-pictures {
        top: var(--top-mobile, -50%) !important;
		margin-left:50px;
    }
}
 

@media (min-width: 768px) {
    div.wsm-portfolio-pictures {
        top: var(--top-tablet, -50%) !important;
		margin-left:50px;
    }
	
}

@media (min-width: 1025px) {
    div.wsm-portfolio-pictures {
        top: var(--top-desktop);
    }
}