  .mb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 32px;
  }
  .mb-section-label {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: orange;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 40px;
  }
  .mb-card {
    background: rgba(255,255,255,0.06);
    border: 0.5px solid rgba(240,192,64,0.25);
    border-radius: 14px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    text-align: left;
  }
  .mb-card:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(240,192,64,0.6);
    transform: translateY(-3px);
    color: inherit;
    text-decoration: none;
  }
  .mb-card.empty {
    border-style: dashed;
    opacity: 0.4;
    pointer-events: none;
  }
  .mb-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(240,192,64,0.15);
    display: flex; align-items: center; justify-content: center;
  }
  .mb-icon svg { width: 18px; height: 18px; }
  .mb-tag {
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1C3D70;;
    font-weight: 900;
  }
  .mb-title {
    font-size: 15px;
    color: #ff7800;
    line-height: 1.5;
    margin: 0;
  }
  .mb-arrow {
    margin-top: auto;
    font-size: 13px;
    color: #1C3D70;;
  }
  .mb-card:hover .mb-arrow { color: rgba(240,192,64,1); }

  