    .news-item-clickable { cursor: pointer; }
    .news-item-clickable:hover { opacity: 0.9; }
    .container { display: flex; gap: 25px; align-items: flex-start; }
    .sidebar-left { flex: 0 0 260px; min-width: 200px; display: flex; flex-direction: column; gap: 20px; }
    .main-content { flex: 1; min-width: 0; }
    .news-list { display: flex; flex-direction: column; gap: 20px; }
    .news-item-full { background: #ffffff; border-radius: 4px; padding: 20px 25px; border: 1px solid #ddd; box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: transform 0.2s, box-shadow 0.2s; display: flex; gap: 20px; align-items: flex-start; }
    .news-item-full:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
    .news-item-full .news-image { flex: 0 0 200px; height: 130px; background: #e0e0e0; border-radius: 4px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .news-item-full .news-image img { width: 100%; height: 100%; object-fit: cover; }
    .news-item-full .news-image .placeholder { font-size: 30px; color: #aaa; }
    .news-item-full .news-body { flex: 1; min-width: 0; }
    .news-item-full .news-title { font-size: 18px; font-weight: bold; margin-bottom: 8px; color: #000; }
    .news-item-full .news-title a { color: #000; text-decoration: none; }
    .news-item-full .news-title a:hover { color: #0066cc; }
    .news-item-full .news-meta { font-size: 13px; color: #999; margin-bottom: 8px; }
    .news-item-full .news-meta span { margin-right: 15px; }
    .news-item-full .news-meta .author { color: #0066cc; }
    .news-item-full .news-description { color: #555; font-size: 14px; line-height: 1.6; }
    .page-title { font-size: 24px; font-weight: bold; color: #333; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid #333; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
    .page-title .news-count { font-size: 14px; font-weight: normal; color: #999; }
    .no-news-today { text-align: center; padding: 60px 20px; background: #ffffff; border-radius: 4px; border: 1px solid #ddd; }
    .no-news-today h2 { font-size: 24px; color: #333; margin-bottom: 10px; }
    .no-news-today p { color: #999; }
    .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 30px; flex-wrap: wrap; }
    .pagination a, .pagination span { display: inline-block; padding: 8px 14px; border: 1px solid #ddd; border-radius: 6px; text-decoration: none; color: #333; font-size: 14px; }
    .pagination a:hover { background: #f0f0f0; border-color: #999; }
    .pagination .active { background: #000; color: #fff; border-color: #000; }
    .pagination .disabled { opacity: 0.5; cursor: not-allowed; }
    @media (max-width: 900px) {
        .container { flex-direction: column; gap: 20px; }
        .sidebar-left { flex: 1; width: 100%; min-width: 0; }
        .main-content { width: 100%; }
        .news-item-full { flex-direction: column; padding: 15px; }
        .news-item-full .news-image { flex: 0 0 auto; width: 100%; height: 180px; }
        .page-title { font-size: 20px; flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 600px) {
        .news-item-full .news-image { height: 140px; }
        .news-item-full .news-title { font-size: 16px; }
    }