/* ========== Insights 页面独有样式 ========== */
.insights-hero {
    background: linear-gradient(135deg, #0A2647 0%, #1E3A5F 100%);
    color: white;
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}

.insights-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.insights-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.insights-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.insights-hero .gold {
    color: #D4AF37;
}

/* 文章卡片网格 */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.insight-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #eef2ff;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
    border-color: #D4AF37;
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.insights-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
.card-content {
    padding: 24px;
}

.card-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 12px;
}

.card-meta i {
    margin-right: 5px;
    color: #D4AF37;
}

.card-title {
    margin-bottom: 12px;
}

.card-title a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0A2647;
    line-height: 1.3;
    transition: color 0.2s;
    text-decoration: none;
}

.card-title a:hover {
    color: #D4AF37;
}

.card-excerpt {
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
}

.read-more {
    color: #D4AF37;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.read-more:hover i {
    transform: translateX(4px);
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 40px;
    background: white;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    font-weight: 500;
    transition: all 0.2s;
}

.page-num i {
    font-size: 0.8rem;
}

.page-num:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #0A2647;
}

.page-num-current {
    background: #0A2647;
    border-color: #0A2647;
    color: white;
}

.page-num-current:hover {
    background: #0A2647;
    color: white;
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pagination {
        gap: 6px;
    }
    .page-num {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
    }
}