.value_showcase-section{
    display:flex;
    flex-direction: column;
    align-items: center;
}
.value_showcase-section .value-showcase_container{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    /* border:1px dashed rgb(var(--color-entry-line)); */
    box-shadow: inset 0 0 0 0.4px rgba(var(--color-entry-line), 0.4);
    overflow: hidden;
    border-radius:10px;
    width:100%;
    padding-top:35px;
    padding-bottom:35px;
    margin-top:60px;
}

.value_showcase-section>.rte{
    margin-top:20px;
}
.value_showcase-section>.button{
    margin-top:40px;
}
.value_showcase-section .value-showcase_grid{
    display:flex;
    justify-content: center;
    padding-top:20px;
    padding-bottom:20px;
    padding-left:20px;
    padding-right:20px;
}
.value_showcase-section .value-showcase_num{
    margin-bottom:15px;
}

.value_showcase-section .value-showcase_grid:not(:first-child){
    /* border-left:1px dashed rgb(var(--color-entry-line)); */
    box-shadow: inset 0.4px 0 0 0 rgba(var(--color-entry-line), 0.4);
}

@media(max-width:768px){
    .value_showcase-section .value-showcase_container{
        grid-template-columns: repeat(1,1fr);
        padding-left:20px;
        padding-right:20px;
        padding-top:0;
        padding-bottom:0;
        margin-top: 9.3333vw;
    }
    .value_showcase-section .value-showcase_grid:not(:first-child){
        border-left:0;
        /* border-top:1px dashed rgb(var(--color-entry-line)); */
        box-shadow: inset 0 0.4px 0 0 rgba(var(--color-entry-line), 0.4);
    }
    .value_showcase-section>.rte{
        margin-top:2.6667vw;
    }
    .value_showcase-section>.button{
        margin-top:5.3333vw;
    }
}