.gallery-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.gallery-list .gallery-item {
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 20px);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-list .gallery-item h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0 6px;
}
.gallery-list .gallery-item des {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.gallery-list .gallery-item .date {
    font-size: 12px;
    color: var(--text-secondary);
}

.gallery-list .gallery-item .thumbnail {
    position: relative;
}
.gallery-list .gallery-item .thumbnail .cate {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 10px;
    display: none;
}

.gallery-list .gallery-item .thumbnail .is_pending {
    display: block;
}
.gallery-list .gallery-item:has(.is_ended) {
    opacity: 0.6;
    pointer-events: none;
}