.links-content {
    margin-top: 1rem;
}

.link-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.card {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 0px;
    transition-duration: 0.15s;
    display: flex;
    flex-direction: row;
    min-height: 80px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0); /* 半透明白色背景 */
    border: 1px solid rgba(0, 0, 0, 0); /* 轻微边框 */
}

/* 响应式布局调整 */
@media (max-width: 900px) {
    .link-navigation {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .link-navigation {
        grid-template-columns: 1fr;
    }
}

/* 头像样式 */
.card .ava {
    width: 3rem!important;
    height: 3rem!important;
    margin: 0!important;
    margin-right: 1em!important;
    border-radius: 4px;
    flex-shrink: 0;
}

/* 文本内容区域 */
.card .card-header {
    font-style: italic;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card .card-header a {
    font-style: normal;
    color: #2bbc8a;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 2px;
    white-space: normal;
    overflow: hidden;
    word-wrap: break-word;
    max-height: 2.4em;
    line-height: 1.2em;
}

.card .card-header .info {
    font-style: normal;
    color: #a3a3a3;
    font-size: 14px;
    overflow: hidden;
    white-space: normal;
    word-wrap: break-word;
    max-height: 3.6em;
    line-height: 1.2em;
}

/* 保持其他样式不变 */
.card:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12), 0 0 6px 0 rgba(0, 0, 0, 0.04);
    background-color: rgba(255, 255, 255, 0.1); /* 悬停时背景更不透明 */
}

.card a {
    border: none;
}