
    .news-hero {
        max-width: 1280px;
        margin: 2rem auto 1rem;
        padding: 1rem 5%;
        text-align: center;
    }

    .news-hero h1 {
        font-size: 2.2rem;
        font-weight: 800;
        background: linear-gradient(115deg, #6e2b8f, #cc5ceb, #e3a0ff);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-bottom: 0.5rem;
    }

    .news-hero p {
        color: #5a4e74;
        font-size: 1rem;
    }

    .search-bar {
        max-width: 500px;
        margin: 1.5rem auto 0;
        display: flex;
        gap: 0.8rem;
        align-items: center;
        background: white;
        border-radius: 60px;
        padding: 0.2rem 0.2rem 0.2rem 1.5rem;
        border: 1px solid #f0e4fa;
        box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }

    .search-bar input {
        flex: 1;
        border: none;
        padding: 0.7rem 0;
        font-size: 0.9rem;
        background: transparent;
        outline: none;
        font-family: inherit;
    }

    .search-bar button {
        background: linear-gradient(135deg, #cc5ceb, #b03ad4);
        border: none;
        padding: 0.5rem 1.3rem;
        border-radius: 50px;
        color: white;
        font-weight: 600;
        cursor: pointer;
        transition: 0.2s;
        font-size: 0.85rem;
    }

    .search-bar button:hover {
        transform: scale(0.97);
    }

    .main-layout {
        max-width: 1280px;
        margin: 2rem auto 3rem;
        padding: 0 5%;
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 2rem;
    }

    .left-news-list {
        background: white;
        border-radius: 32px;
        padding: 1.5rem;
        border: 1px solid #f0e4fa;
        box-shadow: 0 8px 24px rgba(0,0,0,0.03);
    }

    .list-header {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #f0e4fa;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .list-header h2 {
        font-size: 1.2rem;
        font-weight: 700;
        background: linear-gradient(125deg, #6e2b8f, #cc5ceb);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }

    .category-tabs {
        display: flex;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .category-tab {
        font-size: 0.75rem;
        padding: 0.2rem 0.8rem;
        border-radius: 30px;
        background: #f2e6fc;
        color: #b03ad4;
        cursor: pointer;
        transition: 0.2s;
        text-decoration: none;
    }

    .category-tab.active {
        background: #cc5ceb;
        color: white;
    }

    .news-list-item {
        display: flex;
        gap: 1rem;
        padding: 1.2rem 0;
        border-bottom: 1px solid #f5edfe;
        transition: 0.2s;
    }

    .news-list-item:hover {
        transform: translateX(4px);
    }

    .news-image {
        width: 180px;
        height: 120px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        flex-shrink: 0;
        color: #b03ad4;
    }

    .news-content {
        flex: 1;
    }

    .news-title {
        font-size: 1rem;
        font-weight: 700;
        color: #2d2a3e;
        text-decoration: none;
        display: block;
        margin-bottom: 0.4rem;
        line-height: 1.4;
    }

    .news-title:hover {
        color: #cc5ceb;
    }

    .news-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.7rem;
        color: #9b8cb0;
        margin-bottom: 0.4rem;
    }

    .news-category {
        background: #f2e6fc;
        padding: 0.15rem 0.6rem;
        border-radius: 20px;
        color: #b03ad4;
    }

    .news-summary {
        font-size: 0.8rem;
        color: #5a4e74;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.8rem;
        margin-top: 1.8rem;
        flex-wrap: wrap;
    }

    .pagination a, .pagination span {
        padding: 0.3rem 0.8rem;
        border-radius: 30px;
        font-size: 0.8rem;
        color: #5a4e74;
        text-decoration: none;
    }

    .pagination .active-page {
        background: #cc5ceb;
        color: white;
    }

    .page-jump {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: 0.5rem;
    }

    .page-jump input {
        width: 55px;
        padding: 0.3rem;
        border-radius: 20px;
        border: 1px solid #e9daf5;
        text-align: center;
    }

    .page-jump button {
        background: #f2e6fc;
        border: none;
        padding: 0.3rem 0.8rem;
        border-radius: 30px;
        cursor: pointer;
        font-size: 0.75rem;
    }

    .right-sidebar {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .sidebar-card {
        background: white;
        border-radius: 28px;
        padding: 1.5rem;
        border: 1px solid #f0e4fa;
        box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    }

    .sidebar-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1.2rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #f0e4fa;
        color: #2c273f;
    }

    .sidebar-article {
        padding: 0.8rem 0;
        border-bottom: 1px solid #f5edfe;
    }

    .sidebar-article:last-child {
        border-bottom: none;
    }

    .sidebar-title {
        font-size: 0.9rem;
        font-weight: 600;
        color: #2d2a3e;
        text-decoration: none;
        display: block;
        margin-bottom: 0.3rem;
        line-height: 1.4;
    }

    .sidebar-title:hover {
        color: #cc5ceb;
    }

    .sidebar-date {
        font-size: 0.7rem;
        color: #9b8cb0;
    }

    .footer {
        background: #1a1427;
        color: #d9d0e8;
        margin-top: 2rem;
        padding: 3rem 5% 2rem;
    }

    .footer-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 3rem;
    }

    .footer-col h4 {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        font-weight: 700;
    }

    .footer-col p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #c5b9e0;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 0.7rem;
    }

    .footer-links a {
        color: #c5b9e0;
        text-decoration: none;
        font-size: 0.9rem;
        transition: 0.2s;
    }

    .footer-links a:hover {
        color: #cc5ceb;
    }

    .copyright {
        text-align: center;
        padding-top: 2.5rem;
        margin-top: 2rem;
        border-top: 1px solid rgba(203, 165, 235, 0.2);
        font-size: 0.8rem;
        color: #9b8cb0;
    }

    @media (max-width: 900px) {
        .main-layout {
            grid-template-columns: 1fr;
        }
        .navbar {
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .nav-links {
            gap: 1rem;
        }
        .news-hero h1 {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .news-hero {
            padding: 1rem 4%;
        }
        .news-hero h1 {
            font-size: 1.6rem;
        }
        .news-hero p {
            font-size: 0.9rem;
        }
        .search-bar {
            padding: 0.15rem 0.15rem 0.15rem 1rem;
            border-radius: 50px;
        }
        .search-bar input {
            font-size: 0.85rem;
            padding: 0.5rem 0;
        }
        .search-bar button {
            padding: 0.4rem 1rem;
            font-size: 0.8rem;
        }
        .main-layout {
            padding: 1rem 4%;
            gap: 1.5rem;
        }
        .left-news-list {
            padding: 1rem;
            border-radius: 24px;
        }
        .list-header h2 {
            font-size: 1.05rem;
        }
        .category-tabs {
            gap: 0.5rem;
        }
        .category-tab {
            font-size: 0.7rem;
            padding: 0.15rem 0.6rem;
        }
        .news-list-item {
            flex-direction: column;
            gap: 0.8rem;
        }
        .news-image {
            width: 100%;
            height: 160px;
            border-radius: 12px;
        }
        .news-title {
            font-size: 0.95rem;
        }
        .news-meta {
            font-size: 0.65rem;
        }
        .news-summary {
            font-size: 0.8rem;
            -webkit-line-clamp: 3;
        }
        .pagination {
            gap: 0.5rem;
        }
        .pagination a, .pagination span {
            padding: 0.25rem 0.6rem;
            font-size: 0.75rem;
        }
        .page-jump input {
            width: 45px;
        }
        .right-sidebar {
            gap: 1.5rem;
        }
        .sidebar-card {
            padding: 1rem;
            border-radius: 20px;
        }
        .sidebar-card h3 {
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .sidebar-title {
            font-size: 0.85rem;
        }
        .sidebar-date {
            font-size: 0.65rem;
        }
        .footer {
            padding: 2rem 4% 1.5rem;
        }
        .footer-inner {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-col h4 {
            font-size: 1rem;
        }
        .footer-col p, .footer-links a {
            font-size: 0.85rem;
        }
    }