.hero-list {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5f8a 40%, #3b82b6 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero-list::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.hero-list .badge-row span {
    background: rgba(255,255,255,.15);
    color: #fff;
    padding: .3rem .9rem;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 500;
}
.hero-list h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}
.hero-list p {
    font-size: 1.12rem;
    color: rgba(255,255,255,.8);
    max-width: 540px;
    line-height: 1.7;
}
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-title h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}
.section-title .line {
    width: 50px;
    height: 3px;
    background: #1d4ed8;
    margin: .5rem auto 0;
    border-radius: 2px;
}
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}
.article-card-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.article-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
.article-card-item .article-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #f1f5f9;
}
.article-card-item .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.article-card-item:hover .card-img {
    transform: scale(1.06);
}
.article-card-item .card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #1d4ed8, #3b82b6);
    color: #fff;
    padding: .3rem .9rem;
    border-radius: 20px;
    font-size: .73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.article-card-item .card-body {
    padding: 1.3rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.article-card-item .card-title {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: .5rem;
}
.article-card-item .card-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color .25s;
}
.article-card-item .card-title a:hover {
    color: #1d4ed8;
}
.article-card-item .card-excerpt {
    font-size: .88rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: .8rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-card-item .card-meta {
    font-size: .78rem;
    color: #bbb;
    padding-top: .6rem;
    border-top: 1px solid #f0f0f0;
}
.pagination-nav {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin: 2.5rem 0 1rem;
}
.pagination-nav ul {
    display: flex;
    gap: .4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination-nav a,
.pagination-nav span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 .5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: all .25s;
}
.pagination-nav a {
    background: #f1f5f9;
    color: #475569;
}
.pagination-nav a:hover {
    background: #1d4ed8;
    color: #fff;
}
.pagination-nav .active a,
.pagination-nav .active span,
.page-item.active a {
    background: #1d4ed8;
    color: #fff;
}
.pagination-nav .disabled a,
.pagination-nav .disabled span {
    background: #f8fafc;
    color: #cbd5e1;
    cursor: not-allowed;
}
.recommended-section {
    padding: 3.5rem 0;
    background: #f8fafc;
}
.recommended-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.1rem 1.4rem;
    margin-bottom: .8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    border-left: 4px solid #e2e8f0;
    transition: all .3s;
}
.recommended-item:hover {
    border-left-color: #1d4ed8;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transform: translateX(4px);
}
.recommended-item .rec-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1d4ed8;
    min-width: 30px;
    text-align: center;
    flex-shrink: 0;
}
.recommended-item .rec-info {
    flex: 1;
    min-width: 0;
}
.recommended-item .rec-title {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .2rem;
}
.recommended-item .rec-title a {
    color: #333;
    text-decoration: none;
    transition: color .25s;
}
.recommended-item .rec-title a:hover {
    color: #1d4ed8;
}
.recommended-item .rec-date {
    font-size: .75rem;
    color: #aaa;
}
