.showroom{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.s-main{
    width: 100%;
    position: relative;
    height: fit-content;
    display: flex;
    flex-direction: column;
}
.s-m-img{
    width: 100%;
    object-fit: cover;
    border-radius: 32px;
}
.s-m-text{
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 1.667vw;
    border-radius: 0 1.667vw 1.667vw 0;
    gap: 16px;
    position: absolute;
    left: 0;
    bottom: 3.333vw;
}
@media (min-width: 180px) and (max-width: 768px){
    .s-m-img{
        border-radius: 16px 16px 0 0;
    }
    .s-m-text{
        width: 100%;
        background-color: var(--white);
        padding: 16px;
        border-radius: 0 0 16px 16px;
        gap: 16px;
        position: static;
    }
}