
  .imf-matrix {
    margin: 2.5rem 0;
    font-family: 'Inter', -apple-system, sans-serif;
  }
  .imf-matrix__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0F2B42;
    margin-bottom: 0.25rem;
  }
  .imf-matrix__sub {
    font-size: 0.9rem;
    color: #6B6B6B;
    margin-bottom: 1.25rem;
  }
  .imf-matrix__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }
  .imf-matrix__table thead th {
    background: #0F2B42;
    color: #fff;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.85rem 1rem;
    text-align: left;
  }
  .imf-matrix__table thead th:first-child {
    border-radius: 6px 0 0 0;
  }
  .imf-matrix__table thead th:last-child {
    border-radius: 0 6px 0 0;
  }
  .imf-matrix__table tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #E2DDD6;
    background: #fff;
    vertical-align: top;
  }
  .imf-matrix__table tbody tr:last-child td {
    border-bottom: none;
  }
  .imf-matrix__scenario {
    font-weight: 600;
    color: #0F2B42;
    width: 32%;
  }
  .imf-matrix__rec {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #D4782F;
    width: 28%;
  }
  .imf-matrix__rec a {
    color: #D4782F;
    text-decoration: none;
    border-bottom: 1px dashed rgba(212, 120, 47, 0.4);
    transition: all 0.2s ease-in-out;
  }
  .imf-matrix__rec a:hover {
    color: #0F2B42;
    border-bottom: 1px solid #0F2B42;
  }
  .imf-matrix__why {
    color: #6B6B6B;
    font-size: 0.85rem;
  }
  @media (max-width: 640px) {
    .imf-matrix__table,
    .imf-matrix__table thead,
    .imf-matrix__table tbody,
    .imf-matrix__table tr,
    .imf-matrix__table td {
      display: block;
    }
    .imf-matrix__table thead { display: none; }
    .imf-matrix__table tbody tr {
      padding: 0.75rem;
      border-bottom: 2px solid #E2DDD6;
      background: #fff;
    }
    .imf-matrix__table tbody td {
      padding: 0.2rem 0;
      border: none;
      width: auto;
    }
  }
