/* ========================================
   主页区块样式
   ======================================== */
.index-section {
    margin-bottom: var(--spacing-4xl);
}

.index-section:last-child {
    margin-bottom: 0;
}

/* ========================================
   网站简介样式
   ======================================== */
.intro-content {
    color: var(--color-text);
    text-align: justify;
    line-height: 1.8;
}

/* ========================================
   最新文章/书籍列表通用样式
   ======================================== */
.item-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px dashed var(--color-border);
}

.item:last-child {
    border-bottom: none;
}

.item-name {
    font-size: var(--font-size-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}

.item-meta {
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
}

/* ========================================
   响应式设计
   ======================================== */
@media (max-width: var(--breakpoint-tablet)) {
    .index-section {
        margin-bottom: var(--spacing-3xl);
    }
    
    .item-name {
        max-width: 60%;
    }
}
