/* CSS Variables for consistent theming */
    :root {
      --color-bg: #fff; /* slate-50 */
      --color-card-bg: #ffffff;
      --color-text-primary: #1e293b; /* slate-800 */
      --color-text-secondary: #64748b; /* slate-500 */
      --color-text-heading: #0f172a; /* slate-900 */
      --color-text-subtle: #475569; /* slate-600 */
      --color-border: #e2e8f0; /* slate-200 */
      --color-border-light: #f1f5f9; /* slate-100 */

      --color-pill-year: #1e293b; /* slate-800 */
      
      --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      --shadow-card-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
      --shadow-table: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
      --shadow-pill: 0 2px 3px -1px rgba(0, 0, 0, 0.1);
    }

    /* Main Layout Container */
    .main-container {
      padding: 3rem 1rem;
      font-family: 'Morion', sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: var(--color-text-primary);
      line-height: 1.5;
    }
    .content-wrapper {
      max-width: 72rem;
      margin: 0 auto;
    }

    /* Card Styling */
    .card {
      background-color: var(--color-card-bg);
      border-radius: 0.75rem;
      box-shadow: var(--shadow-card);
      overflow: hidden;
      border: 1px solid var(--color-border-light);
      transition: box-shadow 0.2s ease, transform 0.2s ease;
      margin-top: 2rem;
    }
    .card:hover {
      box-shadow: var(--shadow-card-hover);
    }
    .card-header {
      padding: 1.5rem;
      border-bottom: 1px solid var(--color-border);
      background-color: rgba(248, 250, 252, 0.7);
    }
    .card-header h2 {
      margin-top: 0px;
      margin-bottom: 0px;
      font-size: 1.25rem;
    }
    .card-title {
      font-size: 1.5rem; /* text-2xl */
      font-weight: 700;
      color: var(--color-text-heading);
      letter-spacing: -0.025em; /* tracking-tight */
      margin: 0;
    }
    .card-subtitle {
      margin-top: 0.5rem;
      font-size: 1rem;
      color: var(--color-text-secondary);
      margin-bottom: 0;
    }
    .card-footer {
      padding: 1.5rem;
      background-color: #f8fafc;
      border-top: 1px solid var(--color-border);
    }
    .disclaimer {
      font-size: 0.75rem; /* text-xs */
      color: var(--color-text-secondary);
      line-height: 1.625; /* leading-relaxed */
      margin: 0;
    }
    .disclaimer strong {
      font-weight: 600;
      color: var(--color-text-subtle);
    }
    
    /* Table Styling */
    .table-container {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .data-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      display: none;
      box-shadow: var(--shadow-table);
      background-color: var(--color-card-bg);
    }
    .data-table thead {
      background-color: var(--color-bg);
      position: sticky;
      top: 0;
      z-index: 10;
    }
    .data-table th {
      padding: 1rem 1rem;
      text-align: left;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--color-text-subtle);
      letter-spacing: 0.05em; /* tracking-wider */
      white-space: nowrap;
      border-bottom: 2px solid var(--color-border);
    }
    .data-table tbody tr {
      transition: background-color 0.15s ease;
    }
    .data-table tbody tr:hover {
      background-color: rgba(248, 250, 252, 0.5);
    }
    .data-table tbody tr:not(:last-child) td {
      border-bottom: 1px solid var(--color-border);
    }
    .data-table td {
      padding: 1.25rem 1rem;
      vertical-align: top;
      font-size: 0.95rem;
    }
    .cell-main-text {
      font-size: 1rem;
      font-weight: 500;
      color: var(--color-text-heading);
    }
    .cell-main-text strong {
      font-weight: 600;
    }
    .cell-sub-text {
      margin-top: 0.25rem;
      font-size: 0.875rem;
      color: var(--color-text-secondary);
      font-weight: bold;
    }

    /* Mobile Cards */
    .mobile-cards {
      display: block;
    }
    .data-card {
      padding: 1.5rem;
      border-bottom: 1px solid var(--color-border);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .data-card:last-child {
      border-bottom: none;
    }
    .card-header-mobile {
      display: flex;
      align-items: center;
      margin-bottom: 1.25rem;
    }
    .card-content-mobile {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .info-group {
      display: flex;
      flex-direction: column;
      padding: 1rem;
      background-color: rgba(248, 250, 252, 0.5);
      border-radius: 0.5rem;
      border: 1px solid var(--color-border-light);
    }
    .info-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--color-text-subtle);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.5rem;
    }
    .info-content {
      font-size: 0.95rem;
      color: var(--color-text-heading);
      font-weight: 500;
    }
    .info-subtext {
      font-size: 0.875rem;
      color: var(--color-text-secondary);
      margin-top: 0.25rem;
    }

    /* Pill Component */
    .pill {
      display: inline-block;
      padding: 0.375rem 0.875rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: white;
      border-radius: 1rem;
      white-space: nowrap;
      box-shadow: var(--shadow-pill);
    }
    .pill-year { background-color: var(--color-pill-year); }
    
    /* Responsive Media Queries */
    @media (min-width: 640px) {
      .main-container {
        padding: 1.5rem;
      }
      .mobile-cards {
        padding: 1.5rem;
        gap: 1.25rem;
      }
      .data-card {
        border: 1px solid var(--color-border);
        border-radius: 0.75rem;
        padding: 1.5rem;
        box-shadow: var(--shadow-card);
        border-bottom: none;
      }
      .data-card:hover {
        box-shadow: var(--shadow-card-hover);
        transform: translateY(-2px);
      }
    }
    
    @media (min-width: 768px) {
      .card-header, .card-footer {
        padding: 2rem;
      }
      .card-title {
        font-size: 1.875rem; /* text-3xl */
      }
      .mobile-cards {
        padding: 2rem;
        gap: 1.5rem;
      }
      .data-card {
        padding: 1.75rem;
      }
    }
    
    @media (min-width: 1280px) {
      .main-container {
        padding: 2rem;
        margin: 1.25rem -12.5rem;
      }
      .mobile-cards {
        display: none;
      }
      .data-table {
        display: table;
      }
      .data-table th,
      .data-table td {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }