/* 导航卡片样式 */
.joe_links__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.joe_links__card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--background);
    border-radius: var(--radius-wrap);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    border: 1px solid var(--classC);
}

.joe_links__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.joe_links__card-icon {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--back-line-right);
}

.joe_links__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.joe_links__card-initial {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    z-index: 0;
}

.joe_links__card-body {
    min-width: 0;
    flex: 1;
}

.joe_links__card-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--main);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.joe_links__card-desc {
    font-size: 13px;
    color: var(--muted-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.joe_links__empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted-color);
    font-size: 14px;
}

.joe_links__empty pre {
    background: var(--classD);
    padding: 15px;
    border-radius: var(--radius-inner);
    font-size: 12px;
    color: var(--routine);
}

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