    /* Modern Search Experience - Custom Design System */
    :root {
      --brand-dark: #0f172a;
      --brand-primary: #2563eb;
      --brand-primary-hover: #1d4ed8;
      --bg-surface: #f8fafc;
      --text-main: #1e293b;
      --text-muted: #64748b;
      --border-light: #e2e8f0;
    }

    /* Reset & Base overrides for this page */
    .search-page-wrapper {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      background-color: var(--bg-surface);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* Hero Section Redesign */
    .modern-hero {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      padding: 80px 24px 120px;
      position: relative;
      overflow: hidden;
      text-align: center;
      color: white;
    }

    .modern-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-block;
      padding: 6px 16px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 24px;
      backdrop-filter: blur(10px);
    }

    .hero-title {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
      background: linear-gradient(to right, #ffffff, #cbd5e1);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
      font-size: 18px;
      color: #94a3b8;
      margin-bottom: 48px;
      font-weight: 400;
    }

    /* Modern Search Bar */
    .search-container {
      position: relative;
      max-width: 600px;
      margin: 0 auto;
      transform: translateY(0);
      transition: transform 0.3s ease;
    }

    .search-container:focus-within {
      transform: translateY(-2px);
    }

    .modern-search-input {
      width: 100%;
      height: 64px;
      padding: 0 140px 0 24px;
      /* Space for button */
      font-size: 18px;
      background: white;
      border: none;
      border-radius: 16px;
      box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
      outline: none;
      color: var(--text-main);
      transition: all 0.3s ease;
    }

    .modern-search-input::placeholder {
      color: #cbd5e1;
    }

    .search-submit-btn {
      position: absolute;
      right: 8px;
      top: 8px;
      bottom: 8px;
      padding: 0 24px;
      background: var(--brand-primary);
      color: white;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .search-submit-btn:hover {
      background: var(--brand-primary-hover);
      transform: scale(1.02);
    }

    /* Results Section */
    .results-wrapper {
      max-width: 1000px;
      margin: -60px auto 0;
      /* Overlap hero */
      padding: 0 24px 80px;
      position: relative;
      z-index: 3;
    }

    .results-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 500;
      padding: 0 4px;
    }

    .results-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .result-card {
      background: white;
      border-radius: 16px;
      padding: 32px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
      border: 1px solid rgba(226, 232, 240, 0.8);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: start;
    }

    .result-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08);
      border-color: rgba(37, 99, 235, 0.2);
    }

    .result-content {
      min-width: 0;
      /* Prevent text overflow issues */
    }

    .result-meta-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .category-badge {
      background: #eff6ff;
      color: var(--brand-primary);
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .result-date {
      font-size: 13px;
      color: #94a3b8;
    }

    .result-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .result-excerpt {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .result-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #f8fafc;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      transition: all 0.2s ease;
      flex-shrink: 0;
    }

    .result-card:hover .result-arrow {
      background: var(--brand-primary);
      color: white;
    }

    /* Custom Pagination */
    .custom-pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 48px;
    }

    .pagination-btn {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: white;
      color: var(--text-muted);
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.2s ease;
      border: 1px solid var(--border-light);
    }

    .pagination-btn:hover:not(.disabled) {
      background: #f1f5f9;
      color: var(--text-main);
      border-color: #cbd5e1;
    }

    .pagination-btn.active {
      background: var(--brand-dark);
      color: white;
      border-color: var(--brand-dark);
    }

    .pagination-btn.disabled {
      opacity: 0.5;
      cursor: default;
    }

    @media (max-width: 767px) {
      .hero-title {
        font-size: 32px;
      }

      .modern-search-input {
        height: 56px;
        padding-right: 120px;
        font-size: 16px;
      }

      .search-submit-btn {
        padding: 0 16px;
        font-size: 14px;
      }

      .result-card {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 16px;
      }

      .result-arrow {
        display: none;
      }

      .results-wrapper {
        margin-top: -40px;
      }
    }
