.hero-bg {
    background-image: url('https://filetx.3633yx.com/240625-e340585cfafb486a8902ee384890b050.jpg')
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.9) 0%, rgba(76, 175, 80, 0.8) 100%)
}

.article-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(123, 104, 238, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(123, 104, 238, 0.2);
    border-color: rgba(123, 104, 238, 0.3)
}

.article-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease
}

.article-card:hover .article-thumb {
    transform: scale(1.05)
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2D2D2D;
    transition: color 0.3s ease;
    line-height: 1.4
}

.article-card:hover .article-title {
    color: #7B68EE
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    font-size: 0.9375rem
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #999;
    font-size: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(123, 104, 238, 0.1)
}

.section-title {
    position: relative;
    display: inline-block;
    width: 100%
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem
}

.page-link {
    padding: 0.5rem 1rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 0.5rem;
    color: #7B68EE;
    text-decoration: none;
    border: 1px solid rgba(123, 104, 238, 0.2);
    transition: all 0.3s ease
}

.page-link:hover {
    background: #7B68EE;
    color: #fff;
    border-color: #7B68EE
}

.page-link.active {
    background: #7B68EE;
    color: #fff;
    border-color: #7B68EE
}

@media (max-width: 768px) {
    .article-title {
        font-size: 1.1rem
    }

    .article-thumb {
        height: 150px
    }

    .article-content {
        padding: 1rem
    }

    .page-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.875rem
    }
}