    /* Page-specific styles (keep consistent with existing design tokens) */
    .page-hero {
      padding-top: calc(var(--header-h) + 28px);
      padding-bottom: 26px;
    }

    .page-hero__inner {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 18px;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      color: var(--text-secondary);
      font-size: 14px;
      margin-bottom: 10px;
    }

    .breadcrumb a {
      color: var(--text-secondary);
    }

    .breadcrumb .sep {
      opacity: 0.55;
    }

    .page-title {
      font-size: 42px;
      font-weight: 750;
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: var(--text-primary);
    }

    .page-subtitle {
      color: var(--text-secondary);
      font-size: 16px;
      margin-top: 10px;
      max-width: 760px;
    }

    .toolbar {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .toolbar__input {
      height: 42px;
      min-width: 240px;
      padding: 0 14px;
      border-radius: 10px;
      border: 1px solid var(--border-light);
      outline: none;
      font-size: 14px;
      transition: all 0.25s ease;
      background: rgba(255, 255, 255, 0.95);
    }

    .toolbar__input:focus {
      border-color: var(--brand-primary);
      box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
    }

    .toolbar__select {
      height: 42px;
      padding: 0 14px;
      border-radius: 10px;
      border: 1px solid var(--border-light);
      outline: none;
      font-size: 14px;
      background: rgba(255, 255, 255, 0.95);
      transition: all 0.25s ease;
      cursor: pointer;
    }

    .toolbar__select:focus {
      border-color: var(--brand-primary);
      box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
    }

    .news-meta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      color: var(--text-secondary);
      font-size: 13px;
      margin-bottom: 8px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 3px 10px;
      border-radius: 999px;
      background: rgba(0, 102, 255, 0.08);
      color: var(--brand-primary);
      border: 1px solid rgba(0, 102, 255, 0.14);
      font-weight: 650;
      font-size: 12px;
      white-space: nowrap;
    }

    /* nicer click target + consistent hover */
    .news__item {
      text-decoration: none;
    }

    .news__item:focus-visible {
      outline: none;
      border-color: var(--brand-primary);
      box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.14);
    }

    .news__item h3 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .news__item p {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .pager {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 26px;
      padding-top: 18px;
      border-top: 1px solid var(--border-light);
    }

    .pager__hint {
      color: var(--text-secondary);
      font-size: 14px;
    }

    .btn.btn--ghost {
      background: rgba(0, 0, 0, 0.02);
      border: 1px solid var(--border-light);
      color: var(--text-primary);
    }

    .btn.btn--ghost:hover {
      border-color: rgba(0, 102, 255, 0.35);
      transform: translateY(-2px);
      opacity: 1;
      box-shadow: var(--shadow-sm);
    }

    /* skeleton loading for lazy images */
    .lazy-img {
      filter: saturate(1);
      transform: scale(1);
      transition: filter 0.35s ease, transform 0.35s ease;
    }

    .lazy-img.is-loading {
      filter: blur(10px) saturate(0.8);
      transform: scale(1.02);
    }

    .thumb-skeleton {
      position: relative;
      overflow: hidden;
      background: linear-gradient(90deg, rgba(0,0,0,0.04), rgba(0,0,0,0.08), rgba(0,0,0,0.04));
      background-size: 200% 100%;
      animation: shimmer 1.2s ease-in-out infinite;
    }

    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    /* mobile */
    @media (max-width: 900px) {
      .page-hero__inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .toolbar {
        width: 100%;
        justify-content: flex-start;
      }

      .toolbar__input {
        width: 100%;
        min-width: 0;
      }

      .toolbar__select {
        width: 100%;
      }

      .page-title {
        font-size: 32px;
      }
    }

    @media (max-width: 600px) {
      .page-title {
        font-size: 28px;
      }
    }