.page-banner {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
}

.banner-content-inner {
    text-align: center;
    color: #fff;
}

.banner-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.banner-desc {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .current {
    color: #fff;
}

.page-main {
    padding: 50px 0 60px;
    background: #f5f7fa;
}

.main-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.content-area {
    background: #fff;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.list-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.list-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.list-subtitle {
    font-size: 14px;
    color: #666;
}

.category-filter-wrapper {
    margin-bottom: 30px;
}

.category-filter {
    justify-content: center;
    margin-bottom: 0;
}

.article-list-wrapper {
    margin-bottom: 20px;
}

.article-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 8px;
    box-shadow: none;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.1);
    transform: translateX(4px);
}

.article-card .card-thumb {
    width: 240px;
    height: 160px;
}

.article-card .card-body h3 {
    font-size: 17px;
}

.article-card .card-body h3 a {
    color: #1a1a1a;
}

.article-card .card-body h3 a:hover {
    color: var(--primary-color);
}

.article-card .card-body p {
    color: #666;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-body .date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
}

.article-card .card-body .date::before {
    content: '📅';
    font-size: 12px;
}

.pagination-wrapper {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.consult-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: #fff;
}

.consult-card .sidebar-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.consult-card .sidebar-title::after {
    background: #60a5fa;
}

.consult-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 22px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-icon {
    font-size: 18px;
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
}

.contact-text:hover {
    color: #fff;
}

.consult-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: #fff;
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.consult-btn:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links li:last-child {
    margin-bottom: 0;
}

.quick-links li a {
    display: block;
    padding: 12px 15px;
    background: #f5f7fa;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.quick-links li a:hover {
    background: #eff6ff;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 20px;
}

@media (max-width: 992px) {
    .main-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 220px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .banner-desc {
        font-size: 14px;
    }
    
    .page-main {
        padding: 25px 0 40px;
    }
    
    .content-area {
        padding: 20px;
    }
    
    .list-title {
        font-size: 20px;
    }
    
    .article-card {
        flex-direction: column;
    }
    
    .article-card .card-thumb {
        width: 100%;
        height: 180px;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .category-filter {
        justify-content: flex-start;
    }
    
    .category-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}