@import url('../../../style_main/original.css');

main{
    grid-template-columns: 1fr;
}

.box{
    width: 260px;
}

.img-box {
    height: 200px;
}

.img-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.title-box {
    bottom: 75px;
    top: auto;
}

.title-box h5 {
    color: #f7f7f7 !important;
}

.text-box {
    height: 90px;
}

.text-box>div {
    background-color: rgba(255, 255, 255, .8);
    height: 75px;
    overflow: auto;
    position: absolute;
    left: 0;
    top: 200px;
    width: 100%;
    transition: height .5s, top .5s;
}

.text-box>div::-webkit-scrollbar {
    width: 7px;
}

.text-box>div::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}

.text-box>div::-webkit-scrollbar-thumb {
    background: #acacac;
    border-radius: 50px;
}

.text-box>div p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.show-text {
    -webkit-line-clamp: initial !important;
}

.show-box {
    height: 260px !important;
    top: 0 !important;
}