  .report-tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
  }

  .report-tile {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform .15s, box-shadow .15s, border-color .15s;
  }

  .report-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    border-color: #cbd5e1;
  }

  .report-tile-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }

  .report-tile-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
  }

  .report-tile-desc {
    font-size: 12.5px;
    color: #6c757d;
    line-height: 1.5;
  }

  .report-tile-arrow {
    margin-top: auto;
    font-size: 12px;
    color: #0d6efd;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .report-tile:hover .report-tile-arrow {
    gap: 8px;
  }

  .report-tile-arrow i {
    transition: transform .15s;
  }

  .report-tile:hover .report-tile-arrow i {
    transform: translateX(2px);
  }

  .tile-icon-green {
    background: #d1fae5;
    color: #065f46;
  }

  .tile-icon-red {
    background: #fde8e8;
    color: #c53030;
  }

  .tile-icon-purple {
    background: #ede9fe;
    color: #5b21b6;
  }

  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 12px;
    margin-top: 28px;
  }

  .section-label:first-of-type {
    margin-top: 0;
  }