.contents-card{
    margin-bottom: 48px;
}
/* thumb */
.thumb{
    width: 100%;
    height: 420px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin-bottom: 16px;
    display: flex;
    padding: 16px;
}
.quote{
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    color: white;
    opacity: 48%;
    text-shadow: 0px 0px 40px black;
    align-self: flex-end;
    word-break: keep-all;
}

/* contents-info */
.contents-info{
    padding: 0px 4px;
}
.contents-info > li{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.contents-info p.lable{
    font-size: 16px;
    font-weight: 600;
}
.contents-info p.value{
    font-size: 16px;
    font-weight: 600;
}
.contents-title{
    height: 32px;
}
.contents-title p.title{
    font-size: 20px;
    font-weight: 600;
    margin: 1px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 최대 3줄 */
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(32px * 1.4 * 3); /* 32px * 줄 간격 * 최대 줄 수 */
    word-break: break-word;
    line-height: 32px;
}
.contents-title img{
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.card-arrow {
    color: var(--text-color);
}
.card-arrow svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.contents-info li.divider{
    width: 100%;
    height: 2px;
    background-color: var(--black);
    margin: 12px 0px;
}
li.contents-detail{
    height: 32px;
}