/* ================================
   Reports Listing Page Styles
   ================================ */

   .reports-section {
    padding: 90px 0;
  }
  
  .reports-list {
    margin-top: 30px;
  }
  
  /* Individual report card (vertical) */
  .report-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 18px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
  }
  
  .report-title {
    font-size: 20px;
    font-weight: 800;
    color: #1b1b5a;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  
  .report-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #6c6c8a;
    margin-bottom: 10px;
  }
  
  .report-snippet {
    font-size: 15px;
    color: #2a2a3a;
    margin-bottom: 12px;
    opacity: 0.92;
  }
  
  /* Meta row */
  .report-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .report-chip {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(27,27,90,.06);
    color: #1b1b5a;
  }
  
  .report-link {
    margin-left: auto;
    font-weight: 800;
    text-decoration: none;
    color: #ff2fa0;
  }
  
  /* Pagination */
  .reports-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  
  .page-indicator {
    font-weight: 800;
    color: #1b1b5a;
  }
  
  /* Mobile */
  @media (max-width: 767px) {
    .report-card {
      padding: 18px 16px;
    }
  
    .report-title {
      font-size: 18px;
    }
  
    .report-link {
      margin-left: 0;
      width: 100%;
    }
  }
  