/* 项目卡片列表页样式 */
.joe_projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
}

.joe_projects__card {
    display: flex;
    flex-direction: column;
    background: var(--background);
    border-radius: var(--radius-wrap);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--classC);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.joe_projects__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.13);
}

.joe_projects__card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--back-line-right);
    position: relative;
}

.joe_projects__card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.joe_projects__card:hover .joe_projects__card-thumb img {
    transform: scale(1.05);
}

.joe_projects__card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-color);
    opacity: 0.4;
}

.joe_projects__card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.joe_projects__card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--main);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.joe_projects__card-desc {
    font-size: 14px;
    color: var(--muted-color);
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.joe_projects__empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--muted-color);
}

.joe_projects__empty svg {
    margin-bottom: 16px;
    opacity: 0.4;
}

.joe_projects__empty p {
    font-size: 15px;
    margin: 0;
}

@media (max-width: 768px) {
    .joe_projects__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .joe_projects__card-body {
        padding: 15px;
    }

    .joe_projects__card-title {
        font-size: 15px;
    }
}