.poster-box {
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
    padding: 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.2s linear;
    position: relative;
    height: 520px;
}

.poster-box:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background-color: #e6e6e6;
}
 
.poster-box img {
    object-fit: cover;
    border-radius: 12px;
}

.poster-box-title {
    display: block;
    color: #bd9a60;
    margin-top: 12px;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    height: 22px;
    display: -webkit-box;
}

.poster-box-text {
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    font-size: 14px;
    height: 63px;
}

.poster-box hr {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    border-top-color: #bd9a60;
    opacity: 1;
}

.poster-box-footer {
    color:#989896;
    position: absolute;
    bottom: 16px;
    width: 90%;
}