@charset "utf-8";

/* latest */
.pic_card_lt {
    position: relative;
    margin-bottom: 20px;
    background: #fff;
}

.pic_card_lt ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pic_card_lt li a:hover {
    color: #a22121;
}

/* card */
.pic_card_lt .card {
    width: 100%;
    aspect-ratio: 2/1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    color: #fff;
}

/* image */
.pic_card_lt .lt_img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.pic_card_lt .card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, filter .4s ease;
}

/* hover dark overlay */
.pic_card_lt .lt_img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .4s ease;
}

/* hover effect */
.pic_card_lt .card:hover .lt_img::after {
    background: rgba(0,0,0,0.45);
}

.pic_card_lt .card:hover img {
    transform: scale(1.05);
}

/* title */
.pic_card_lt .card h2 {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 30px;
    margin: 0;
    font-size: 1.2rem;
    line-height: 22px;
    font-weight: 600;
    overflow: hidden;
    z-index: 2;
    transition: bottom .3s ease;
    opacity: 0;
}

.pic_card_lt .card h2 a {
    color: #fff;
}

/* content */
.pic_card_lt .card p {
    position: absolute;
    left: 20px;
    bottom: 15px;
    max-width: 80%;
    opacity: 0;
    z-index: 2;
    transition: opacity .3s ease;
}

.pic_card_lt .card:hover h2 {
    bottom: 70px;
    opacity: 1;
}

.pic_card_lt .card:hover p {
    opacity: 1;
}

/* empty */
.pic_card_lt .empty_li {
    text-align: center;
    color: #666;
    padding: 40px 0;
}