.stacked-showcase{
    background-color: rgb(var(--color-background));
}
.stacked-showcase-section{
    width:100%;
}
.stacked-showcase-section>.block-heading{
    margin-bottom:20px;
}
.stacked-showcase-section .stacked-showcase_container{
    background-color:rgb(var(--color-background));
    border-radius:10px;
}
.stacked-showcase-section .stacked-showcase_container{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:40px;
    align-items: center;
    padding:0 80px;
    overflow: hidden;
}
.stacked-showcase-section .stacked-showcase_grid{
    display:flex;
    flex-direction: column;
    gap:60px;
    padding-top:80px;
    padding-bottom:80px;
}
.stacked-showcase-section .stacked-showcase_info>.stacked-showcase_info-heading{
    border-bottom:1px solid rgba(var(--color-entry-line),0.5);
    display: flex;
    justify-content: flex-start;
}
.stacked-showcase-section .stacked-showcase_info .block-heading{
    width: auto;
    position: relative;
    padding-bottom:10px;
    white-space: nowrap;
    overflow: hidden;
}
.stacked-showcase-section .stacked-showcase_info .block-heading::before{
    content: '';
    display: block;
    width:6px;
    height: 6px;
    background-color: rgba(255,255,255,0.5);
    position: absolute;
    left:-23px;
    border-radius: 50%;
    top:50%;
    transform: translateY(-50%);
}
.stacked-showcase-section .stacked-showcase_info .block-heading::after{
    content: '';
    display: block;
    width:100%;
    height: 1px;
    background-color: rgb(var(--color-entry-line));
    position: absolute;
    bottom: 0;
}
.stacked-showcase-section .stacked-showcase_info .stacked-showcase_info-content{
    padding-top:15px;
}

.stacked-showcase-section .stacked-showcase_image{
    padding-top:30px;
}
.stacked-showcase-section .stacked-showcase_image img{
    max-height:600px;
    object-fit: contain;
}
@media(max-width:1024px){
    .stacked-showcase-section .stacked-showcase_container{
        padding:0 40px;
    }
}
@media(max-width:768px){
    .stacked-showcase-section{
        padding:0;
    }
    .stacked-showcase .page-width{
        padding-inline: 0;
    }
    .stacked-showcase-section>.block-heading{
        margin-bottom: 2.6667vw;
    }
    .stacked-showcase-section .stacked-showcase_container{
        padding-inline:7.43vw;
        padding-bottom: 12.27vw;
        grid-template-columns: repeat(1, 1fr);
        gap:2.6667vw;
    }
    .stacked-showcase-section .stacked-showcase_grid{
        order: 2;
        padding-bottom:0;
        padding-top:0;
    }
    .stacked-showcase-section .stacked-showcase_image{
        order: 1;
        padding-top: 0;
    }
    .stacked-showcase-section .stacked-showcase_grid{
        gap: 2.6667vw;
    }
}