body{
    margin: 0;
}
.slst_parent{
    font-family: sans-serif;
    display: flex;

}
.slst_slideshow_wrapper{
    max-width: 60%;
    position: relative;
    
}
.slst_slideshow .slst_slider_wrapper{
    display: grid;
    height: 750px;
    row-gap: 2px;
    column-gap: 2px;
    height: calc(100vh - 120px);
}
.slst_main{
    grid-area: 1/1/3/6;
    display: block;
}
.slst_sub_up{
    grid-area: 1/6/1/9;
    display: block;
}
.slst_sub_down{
    grid-area: 2/6/2/9;
    display: block;
}
.slst_posts{
    position: relative;
    display: flex;
    justify-content: center;
    text-decoration: none;
    align-items: self-end;
}
.slst_posts img{
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.slst_posts:after{
    content: "";
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.76234243697479) 0%, rgba(0,0,0,0) 100%);
    position: absolute;
    bottom: 0;
    height: 50%;
    width: 100%;
    z-index: 1;
}
.slst_posts h4{
    position: absolute;
    color: white;
    font-size: 20px;
    z-index: 2;
    max-width: 80%;
    text-align: center;
    margin: 0;
    bottom: 20px;
}
.slst_static
{
    max-width: 40%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.slst_static_item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #efefef;
}
.slst_static_item h4{
    margin-bottom: 0;
   
    word-break: break-word;
}
.slst_static_item p{
    margin-top: 10px;
   
    word-break: break-word;
}
.slst_static_item img{
    max-width: fit-content;
    border-radius: 10px;
    border: solid 1px #eee;
    background-color: #eee;
    width: 130px;
}
.slst_slideshow_arrow_left, .slst_slideshow_arrow_right{
    position: absolute;
    z-index: 9;
    top: 45%;
    cursor: pointer;
    display: flex;
}
.slst_slideshow_arrow_left svg,
.slst_slideshow_arrow_right svg{
    max-width: 50px;
    width: 100%;
    fill: white;
}
.slst_slideshow_arrow_right{
    right: 10px;
}
.slst_slideshow_arrow_left{
    left: 10px;
    transform: rotate(180deg);
}
@media screen and (max-width: 1024px) {
    .slst_parent{
        flex-direction: column;
    }
    .slst_slideshow_wrapper{
        max-width: 100%;
    }
    .slst_static{
        max-width: 100%;
    }
    .slst_static_item{
        padding: 30px 0;
    }
    .slst_static_item p{
        margin-bottom: 0;
    }
}
@media screen and (max-width: 1200px) {
    .slst_posts h4{
        font-size: 17px;
    }
    .slst_posts:after{
        height: 70%;
    }
}
@media screen and (max-width: 500px) 
{
   
    .slst_main{
        grid-area: 1/1/1/1;
    }
    .slst_sub_up{
        grid-area: 2/1/2/1;
    }
    .slst_sub_down{
        grid-area: 3/1/3/1;
    }
    .slst_slideshow_arrow_left, .slst_slideshow_arrow_right{
        display: none;
    }
}
@media screen and (max-width: 450px) {
    .slst_posts{
        max-height: 200px;
    }
    .slst_slideshow .slst_slider_wrapper{
        height: 500px;
    }
    .slst_posts:after{
        height: 90%;
    }
    .slst_posts h4{
        font-size: 15px;
        bottom: 10px;
    }
}
@media screen and (max-width: 350px) {
    .slst_static{
        grid-template-columns: repeat(1, 1fr);
    }
}