/* 루트 css */
.widget-title{
    margin-left: 2%; 
    margin-top: 1rem;
    transition:margin .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
a.explore-more {
    font-size: 1rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--font-color1);
}
a.explore-more:hover {
    filter: brightness(0.9);
}
a.explore-more i {
    color: var(--accent-color);
    margin-left: .5rem;
}
.page-vertical-padding{
    width: 46.5%;
    display: flex;
    flex-direction: column;
    margin:auto;
    transition: width;
}
.content{
    text-decoration: none;
    color: var(--font-color2);
    aspect-ratio: 1.5;
    /* flex: 1; */
}
.page-vertical-padding .widget{
    width: 100%;
    /* width: calc(100% - 1.6rem); */
    /* margin: 0rem .8rem; */
    position: relative;
    display: flex;
}
.box-liner{
    flex-direction: row;
}
.box-vertical{
    flex-direction: column;
}
.wrap-liner-2{
    display: flex;
}
.wrap-vertical-3{
    display: flex;
}
.mini .content .title{
    font-size: .8em;
}
.box .content:hover {
    box-shadow: 1px 1px 8px #0000009c;
    transition: ease-in-out.3s box-shadow;
}
.box .content{
    position:relative;
    overflow: hidden;
    box-shadow: 0px 0px 0px transparent;
    transition: ease-in-out.3s box-shadow;
    margin:1rem .5rem;
}
.box .content .title{
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: auto-phrase;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical
}
.box .content .content-info {
    position: absolute;
    bottom: 0;
    padding: .8rem;
    font-size: 1.3em;
    word-break: auto-phrase;
    overflow: hidden;
    width: calc(100% - 1.6rem);
    height: calc(100% - 1.6rem);
    color: #eee;
    text-align: end;
    background: linear-gradient(to bottom, #00000000 0%, #0000007d 100%);
    text-overflow: ellipsis;
    display: flex;
    flex-direction: column-reverse;
}
.box .content .content-info .content-bottom-infos {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    font-size: .6em;
    color: #ffffffb5;
}
.box .content .content-info .description{
    display: none;
}
.content .thumbnail{
    background-color: #000;
}
.content .thumbnail img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}
